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
ABORTCODE=137
%.abortrecover: %.tdb$(BINSUF) $(PTHREAD_LOCAL)
ifeq ($(VGRIND),)
./$< --test >$<.check.output 2>&1; \
{ ./$< --test >$<.check.output 2>&1; } 2>/dev/null ;\
if [ $$? -ne $(ABORTCODE) ] ; then \
test 0 = 1; \
else \
......@@ -341,7 +341,7 @@ ifeq ($(VGRIND),)
fi \
$(MAYBEINVERTER) $(SUMMARIZE_CMD)
else
./$< --test >$<.check.output 2>&1; \
{ ./$< --test >$<.check.output 2>&1; } 2>/dev/null ;\
if [ $$? -ne $(ABORTCODE) ] ; then \
cat $<.check.output; test 0 = 1; \
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