Commit 0cba5db5 authored by Bradley C. Kuszmaul's avatar Bradley C. Kuszmaul Committed by Yoni Fogel

abortrecover gets magic brackets. Refs #2297. [t:2287]

git-svn-id: file:///svn/toku/tokudb@16856 c7de825b-a66e-492c-adef-691d508d4ae1
parent e2c57ca0
...@@ -333,7 +333,7 @@ endif ...@@ -333,7 +333,7 @@ endif
ABORTCODE=137 ABORTCODE=137
%.abortrecover: %.tdb$(BINSUF) $(PTHREAD_LOCAL) %.abortrecover: %.tdb$(BINSUF) $(PTHREAD_LOCAL)
ifeq ($(VGRIND),) ifeq ($(VGRIND),)
./$< --test >$<.check.output 2>&1; \ { ./$< --test >$<.check.output 2>&1; } 2>/dev/null ;\
if [ $$? -ne $(ABORTCODE) ] ; then \ if [ $$? -ne $(ABORTCODE) ] ; then \
test 0 = 1; \ test 0 = 1; \
else \ else \
...@@ -341,7 +341,7 @@ ifeq ($(VGRIND),) ...@@ -341,7 +341,7 @@ ifeq ($(VGRIND),)
fi \ fi \
$(MAYBEINVERTER) $(SUMMARIZE_CMD) $(MAYBEINVERTER) $(SUMMARIZE_CMD)
else else
./$< --test >$<.check.output 2>&1; \ { ./$< --test >$<.check.output 2>&1; } 2>/dev/null ;\
if [ $$? -ne $(ABORTCODE) ] ; then \ if [ $$? -ne $(ABORTCODE) ] ; then \
cat $<.check.output; test 0 = 1; \ cat $<.check.output; test 0 = 1; \
else \ else \
......
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