summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2018-11-14 16:37:39 +1100
committerDavid Gibson <david@gibson.dropbear.id.au>2018-11-14 16:37:39 +1100
commitca930e20bb54d823a90598f1f861a76bd18bc7c7 (patch)
treec89d1fbd66fee1f11ab22a89ff14c7efc55cc115
parent43366bb4eeee868bf44f15be220e0b16d77ddd34 (diff)
downloaddevice-tree-compiler-ca930e20bb54d823a90598f1f861a76bd18bc7c7.tar.gz
tests: Don't lose errors from make checkm
For unclear reasons we had some code to copy a transcript of "make checkm" runs to a vglog.XXX file. It's not really clear why this was there, and it had the nasty side effect of discarding errors from run_tests.sh, meaning that an error on the valgrind run wouldn't show up clearly in Travis CI builds. Remove that logic so that we see errors more clearly. Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
-rw-r--r--tests/Makefile.tests2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile.tests b/tests/Makefile.tests
index bd1c8ef..6ddf444 100644
--- a/tests/Makefile.tests
+++ b/tests/Makefile.tests
@@ -88,7 +88,7 @@ checkm:
@echo "make checkm requires valgrind, but NO_VALGRIND=1"
else
checkm: tests ${TESTS_BIN} $(TESTS_PYLIBFDT)
- cd $(TESTS_PREFIX); ./run_tests.sh -m 2>&1 | tee vglog.$$$$
+ cd $(TESTS_PREFIX); ./run_tests.sh -m
endif
checkv: tests ${TESTS_BIN} $(TESTS_PYLIBFDT)