diff options
author | Bart Polot <bart@net.in.tum.de> | 2012-09-28 10:08:46 +0000 |
---|---|---|
committer | Bart Polot <bart@net.in.tum.de> | 2012-09-28 10:08:46 +0000 |
commit | 621528a6cecd405813525b0d44479fea1e2ef479 (patch) | |
tree | fc3981458e6d069713725357ccf3ce0f3989cc49 /src/regex/Makefile.am | |
parent | b764304d2ebf70d837e0636e3c34cd172285110f (diff) |
- Big regex testcase
Diffstat (limited to 'src/regex/Makefile.am')
-rw-r--r-- | src/regex/Makefile.am | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/src/regex/Makefile.am b/src/regex/Makefile.am index ca7e522651..40bf01a735 100644 --- a/src/regex/Makefile.am +++ b/src/regex/Makefile.am @@ -24,10 +24,16 @@ check_PROGRAMS = \ test_regex_iterate_api \ test_regex_proofs \ test_regex_graph_api \ - test_regex_iptoregex + test_regex_iptoregex \ + test_regex_big + if ENABLE_TEST_RUN -TESTS = $(check_PROGRAMS) +TESTS = \ + test_regex_eval_api \ + test_regex_iterate_api \ + test_regex_proofs \ + test_regex_graph_api endif test_regex_eval_api_SOURCES = \ @@ -54,10 +60,18 @@ test_regex_graph_api_LDADD = \ $(top_builddir)/src/regex/libgnunetregex.la \ $(top_builddir)/src/util/libgnunetutil.la +test_regex_big_SOURCES = \ +test_regex_big.c +test_regex_big_LDADD = \ + $(top_builddir)/src/regex/libgnunetregex.la \ + $(top_builddir)/src/util/libgnunetutil.la \ + $(top_builddir)/src/testbed/libgnunettestbed.la + test_regex_iptoregex_SOURCES = \ test_regex_iptoregex.c test_regex_iptoregex_LDADD = \ $(top_builddir)/src/regex/libgnunetregex.la + EXTRA_DIST = # test_regex_data.conf |