From 7ebad62db57965d72dbceb38c082eb20e784545a Mon Sep 17 00:00:00 2001 From: "Bradley C. Kuszmaul" Date: Tue, 16 Apr 2013 23:57:48 -0400 Subject: [PATCH] Fixes #1667. Running {{{make check TOKUDBONLY=1}}} now skips BDB tests. git-svn-id: file:///svn/toku/tokudb@11190 c7de825b-a66e-492c-adef-691d508d4ae1 --- src/tests/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/tests/Makefile b/src/tests/Makefile index 6754142a5c8..7c1d85372b6 100644 --- a/src/tests/Makefile +++ b/src/tests/Makefile @@ -137,7 +137,11 @@ MORE_BDB_BINS = test1426.bdb$(BINSUF) default all build: $(ALL_TESTS) $(MORE_BDB_BINS) -check: check.tdb check.bdb ; +check: check.tdb ; +ifndef TOKUDBONLY +check: check.bdb ; +endif + tests: tests.bdb tests.tdb ; tests.bdb: $(BDB_TESTS) ; check.bdb: $(RUN_BDB_TESTS) ;