Fixes #1667. Running {{{make check TOKUDBONLY=1}}} now skips BDB tests.

git-svn-id: file:///svn/toku/tokudb@11190 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
Bradley C. Kuszmaul 2013-04-16 23:57:48 -04:00 committed by Yoni Fogel
parent 5c108195c3
commit 7ebad62db5

View file

@ -137,7 +137,11 @@ MORE_BDB_BINS = test1426.bdb$(BINSUF)
default all build: $(ALL_TESTS) $(MORE_BDB_BINS) 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: tests.bdb tests.tdb ;
tests.bdb: $(BDB_TESTS) ; tests.bdb: $(BDB_TESTS) ;
check.bdb: $(RUN_BDB_TESTS) ; check.bdb: $(RUN_BDB_TESTS) ;