Commit 673a14b1 authored by Yoni Fogel's avatar Yoni Fogel

Addresses #1531 refs[t:1531] Disable all bdb tests in windows. Causing too...

Addresses #1531 refs[t:1531] Disable all bdb tests in windows.  Causing too many hangs and/or user-interaction required to bypass error messages.

git-svn-id: file:///svn/toku/tokudb@15005 c7de825b-a66e-492c-adef-691d508d4ae1
parent b29c2195
......@@ -141,8 +141,13 @@ ifeq ($(OS_CHOICE),windows)
BDB_DONTRUN_TESTS+=$(WINDOWS_BDB_DONTRUN_TESTS)
endif
BDB_BINS = $(patsubst %.c,%.bdb$(BINSUF),$(filter-out $(patsubst %,%.c,$(BDB_DONTRUN_TESTS)),$(SRCS)))
ifeq ($(OS_CHOICE),windows)
BDB_TESTS=
BDB_BINS=
else
BDB_TESTS = $(patsubst %.c,%.bdb$(BINSUF),$(filter-out $(patsubst %,%.c,$(BDB_DONTRUN_TESTS)),$(SRCS)))
BDB_BINS = $(patsubst %.c,%.bdb$(BINSUF),$(filter-out $(patsubst %,%.c,$(BDB_DONTRUN_TESTS)),$(SRCS)))
endif
TDB_TESTS_THAT_SHOULD_FAIL= \
test_groupcommit_count \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment