Commit graph

447 commits

Author SHA1 Message Date
Omer Katz 9c191682da Added zmalloc from redis in order to allow different allocators. 2014-05-20 20:50:15 +03:00
c9s ad8faeb787 Update test results 2014-05-21 01:41:45 +08:00
c9s 0064eb27a1 const to node * n 2014-05-21 01:22:49 +08:00
c9s 0d2ae75bc2 prefetch firstbyte 2014-05-21 01:20:18 +08:00
c9s e9797295b5 Fix endpoint when branching edges 2014-05-21 01:15:54 +08:00
c9s 99198297c2 update test description 2014-05-21 00:55:43 +08:00
c9s aae35c3b90 more test case 2014-05-21 00:49:08 +08:00
c9s 5bd1757e5f function name fix 2014-05-21 00:47:09 +08:00
c9s cae305b92d when child is not endpoint, return NULL 2014-05-21 00:37:27 +08:00
c9s 90890b09e5 put r3_define.h back XD becase we depends on bool 2014-05-21 00:33:19 +08:00
c9s 92e2ddf066 remove r3_define.h 2014-05-20 23:54:57 +08:00
c9s fbbb976768 r3_define.h is removed 2014-05-20 23:54:15 +08:00
c9s 7ba0efc60c use doublecirlce for endpoint nodes 2014-05-20 23:48:35 +08:00
c9s a706b48f14 Add more patterns to gvc paths 2014-05-20 23:39:20 +08:00
c9s 1cbba0a101 no jemalloc for now. 2014-05-20 23:34:54 +08:00
c9s 5183e9a052 merge r3_define.h into r3.h 2014-05-20 23:33:51 +08:00
c9s ee190bc030 delete demo.c 2014-05-20 23:31:27 +08:00
c9s 750a9beaa4 _r3_tree_insert_pathl to r3_tree_insert_pathl_ 2014-05-20 23:30:36 +08:00
c9s 02b4008a69 str_split is unused 2014-05-20 23:29:17 +08:00
c9s 85001c6327 Rename compile_slug to slug_compile 2014-05-20 23:25:55 +08:00
c9s 99819c4bbb move strndiff and strdiff to node.c and make it private 2014-05-20 23:25:12 +08:00
c9s 26c7e8896e Rename count_slug to slug_count 2014-05-20 23:21:15 +08:00
c9s eb81c1cc0b Add coverage report button 2014-05-20 23:11:28 +08:00
Pedro 642300ba7b Merge pull request #25 from czchen/feature/coveralls
Add coveralls.io support
2014-05-20 22:31:20 +08:00
ChangZhuo Chen (陳昌倬) 16427fe42a Add coveralls.io support 2014-05-20 22:05:07 +08:00
c9s 9499432084 remove debug print 2014-05-20 21:41:24 +08:00
c9s 268047c18c Add failing tests for {idx:\d{3}}-{idy:\d{3}} pattern 2014-05-20 21:40:45 +08:00
c9s b3e6321303 more slug compile test 2014-05-20 21:38:59 +08:00
c9s 898ea300a9 Fix placeholder finder 2014-05-20 21:38:37 +08:00
c9s 9caecc8a07 delete config.h.in 2014-05-20 16:38:51 +08:00
c9s a2cf6d2733 Add travis status image 2014-05-20 16:22:46 +08:00
c9s 1d2eb53565 delete config.h since it's autogenerated 2014-05-20 16:21:05 +08:00
c9s de8c26a11a fix tests 2014-05-20 16:18:17 +08:00
c9s a086f9f6e8 Fix memory allocation 2014-05-20 16:16:36 +08:00
c9s e2bf5d5177 Allocation fixes 2014-05-20 15:49:31 +08:00
c9s 155e881d6b enable -ggdb when building test files 2014-05-20 15:34:56 +08:00
c9s 188bb991b9 -ggdb when debug mode is enable (--enable-debug) 2014-05-20 15:34:41 +08:00
c9s 5331d375ac Fix gnu c compiler error when the variable is the same 2014-05-20 15:32:22 +08:00
c9s fd4e89c2f4 check NULL pointer 2014-05-20 15:14:12 +08:00
c9s af3cdbbff4 use ck_assert instead of ck_assert_int_gt 2014-05-20 15:10:09 +08:00
c9s 9d19d233c6 comment regexp symbol 2014-05-20 15:06:52 +08:00
Pedro a588649e14 Merge pull request #24 from czchen/bugfix/travis-ci
Remove AC_CHECK_HEADER_STDBOOL
2014-05-20 14:59:00 +08:00
ChangZhuo Chen (陳昌倬) f6d534d20b Remove AC_CHECK_HEADER_STDBOOL
AC_CHECK_HEADER_STDBOOL is not supported in ubuntu precise which is used
by travis-ci.
2014-05-20 12:08:18 +08:00
c9s 41dc7373f3 comment jemalloc include lines 2014-05-20 01:28:51 +08:00
c9s f4e8d8fdc9 Merge branch 'czchen-feature/export'
struct name does not need to be exported since they are just offset and
size in application binary interface (ABI). As for symbol match_entry,
updated regex will export them.

The command objdump -t libr3.so.0 can be used to see export symbols. If
the second column of a symbol is marked as g, it is exported.
2014-05-20 01:27:16 +08:00
c9s 678d096d07 Merge branch 'feature/export' of https://github.com/czchen/r3 into czchen-feature/export
Conflicts:
	src/Makefile.am
2014-05-20 01:26:40 +08:00
ChangZhuo Chen (陳昌倬) 7bf513d5cd Update export symbols regex to ^r3_|^match_ 2014-05-19 22:32:39 +08:00
c9s 1ec3943591 we don't use list.c for now, so just skip it 2014-05-19 22:00:58 +08:00
ChangZhuo Chen (陳昌倬) bad5cc8966 Export symbols only when it matches regex '^r3_' 2014-05-19 21:43:42 +08:00
c9s 611eee4c05 update gitignore list 2014-05-19 20:08:53 +08:00