Commit 0d7e3570 authored by Yoni Fogel's avatar Yoni Fogel

Addresses #1531 Tests that will never be ported to windows, disabled in windows

git-svn-id: file:///svn/toku/tokudb@9978 c7de825b-a66e-492c-adef-691d508d4ae1
parent 22c8ad8f
......@@ -31,7 +31,20 @@ $(notdir $(TLIBTDB)): $(TLIBTDB)
SRCS = $(sort $(wildcard *.c))
TDB_TESTS = $(patsubst %.c,%.tdb$(BINSUF),$(SRCS))
#Tests that are irrelevant in windows.
WINDOWS_DONTRUN_TESTS = \
helgrind1 \
helgrind2 \
helgrind3 \
#\ ends prev line
ifeq ($(OS_CHOICE),windows)
TDB_TESTS = $(patsubst %.c,%.tdb$(BINSUF),$(filter-out $(patsubst %,%.c,$(WINDOWS_DONTRUN_TESTS)),$(SRCS)))
else
TDB_TESTS = $(patsubst %.c,%.tdb$(BINSUF),$(SRCS))
endif
BDB_DONTRUN_TESTS = \
bug1381 \
bug627 \
......
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