Moved benchmark code into tests directory.
This commit is contained in:
parent
af887685f5
commit
532ee999b9
|
@ -1,5 +1,4 @@
|
||||||
bin_PROGRAMS = cmph
|
bin_PROGRAMS = cmph
|
||||||
check_PROGRAMS = cmph_benchmark_test
|
|
||||||
noinst_PROGRAMS = bm_numbers
|
noinst_PROGRAMS = bm_numbers
|
||||||
lib_LTLIBRARIES = libcmph.la
|
lib_LTLIBRARIES = libcmph.la
|
||||||
include_HEADERS = cmph.h cmph_types.h cmph_time.h chd_ph.h
|
include_HEADERS = cmph.h cmph_types.h cmph_time.h chd_ph.h
|
||||||
|
@ -34,8 +33,5 @@ libcmph_la_LDFLAGS = -version-info 0:0:0
|
||||||
cmph_SOURCES = main.c wingetopt.h wingetopt.c
|
cmph_SOURCES = main.c wingetopt.h wingetopt.c
|
||||||
cmph_LDADD = libcmph.la
|
cmph_LDADD = libcmph.la
|
||||||
|
|
||||||
cmph_benchmark_test_SOURCES = cmph_benchmark_test.c
|
|
||||||
cmph_benchmark_test_LDADD = libcmph.la
|
|
||||||
|
|
||||||
bm_numbers_SOURCES = bm_numbers.c
|
bm_numbers_SOURCES = bm_numbers.c
|
||||||
bm_numbers_LDADD = libcmph.la
|
bm_numbers_LDADD = libcmph.la
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
TESTS = $(check_PROGRAMS)
|
TESTS = $(check_PROGRAMS)
|
||||||
check_PROGRAMS = graph_tests select_tests compressed_seq_tests compressed_rank_tests
|
check_PROGRAMS = graph_tests select_tests compressed_seq_tests compressed_rank_tests cmph_benchmark_test
|
||||||
noinst_PROGRAMS = packed_mphf_tests mphf_tests
|
noinst_PROGRAMS = packed_mphf_tests mphf_tests
|
||||||
|
|
||||||
INCLUDES = -I../src/
|
INCLUDES = -I../src/
|
||||||
|
@ -21,3 +21,6 @@ compressed_seq_tests_LDADD = ../src/libcmph.la
|
||||||
|
|
||||||
compressed_rank_tests_SOURCES = compressed_rank_tests.c
|
compressed_rank_tests_SOURCES = compressed_rank_tests.c
|
||||||
compressed_rank_tests_LDADD = ../src/libcmph.la
|
compressed_rank_tests_LDADD = ../src/libcmph.la
|
||||||
|
|
||||||
|
cmph_benchmark_test_SOURCES = cmph_benchmark_test.c
|
||||||
|
cmph_benchmark_test_LDADD = ../src/libcmph.la
|
||||||
|
|
Loading…
Reference in New Issue