Commit 361f2551 authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

#3973 see if intel inspector can find uninitialized variable references refs[t:3973]

git-svn-id: file:///svn/toku/tokudb@35057 c7de825b-a66e-492c-adef-691d508d4ae1
parent 8d05ff8a
......@@ -94,6 +94,21 @@ else
$(SUMMARIZE_SHOULD_FAIL)
endif
try-uninit.tdbrun: try-uninit
ifeq ($(VGRIND),)
./$< $(SUMMARIZE_SHOULD_FAIL)
else
$(VGRIND) --error-exitcode=1 --quiet --leak-check=full --show-reachable=yes --log-file=$<.check.valgrind ./$< >$<.check.output 2>&1; \
if [ $$? = 0 ] ; then \
lines=`cat $<.check.valgrind | wc -l`; \
if [ $$lines -ne 0 ] ; then cat $<.check.valgrind; test 0 = 1; fi \
else \
test 0 = 1; \
fi \
$(INVERTER) \
$(SUMMARIZE_SHOULD_FAIL)
endif
try-assert0.tdbrun: try-assert0
./$< 2> /dev/null $(INVERTER) $(SUMMARIZE_SHOULD_FAIL)
......
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