From bbe97b55366457d920e30b3d7b90daa336375e54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Proch=C3=A1zka?= Date: Fri, 14 Mar 2014 00:29:55 +0100 Subject: [PATCH] Tests: output only *.actual files of this library --- tests/run-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run-tests.sh b/tests/run-tests.sh index ff71cc5..97307b9 100755 --- a/tests/run-tests.sh +++ b/tests/run-tests.sh @@ -35,6 +35,6 @@ error=$? # Print *.actual content if tests failed if [ "${VERBOSE-false}" != "false" -a $error -ne 0 ]; then - for i in $(find . -name \*.actual); do echo "--- $i"; cat $i; echo; echo; done + for i in $(find ./tests/ -name \*.actual); do echo "--- $i"; cat $i; echo; echo; done exit $error fi