Files
mongo/bench/wtperf/Makefile.am
Alex Gorrod f403c1d0ec WT-2342 Add background create/drop to wtperf.
Works on idle tables. Gives us a way to ensure that schema operations
don't get blocked during high throughput workloads.
2016-01-21 17:07:55 +11:00

18 lines
474 B
Makefile

AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir)/src/include
LDADD = $(top_builddir)/libwiredtiger.la -lm
noinst_PROGRAMS = wtperf
wtperf_LDFLAGS = -static
wtperf_SOURCES =\
config.c idle_table_cycle.c misc.c track.c wtperf.c \
wtperf.h wtperf_opt.i wtperf_throttle.c wtperf_truncate.c
TESTS = smoke.sh
AM_TESTS_ENVIRONMENT = rm -rf WT_TEST ; mkdir WT_TEST ;
# automake 1.11 compatibility
TESTS_ENVIRONMENT = $(AM_TESTS_ENVIRONMENT)
clean-local:
rm -rf WT_TEST *.core