Message ID | 20171130053005.21391-1-oohall@gmail.com |
---|---|
State | Accepted |
Headers | show |
Series | external/test: Print the name of each test | expand |
Oliver O'Halloran <oohall@gmail.com> writes: > Currently running 'make check' results in nothing but a message > indicating that all tests passed. If a test runs in a wood and it > doesn't make a sound, did it run at all? > > Signed-off-by: Oliver O'Halloran <oohall@gmail.com> > --- > external/test/test.sh | 1 + > 1 file changed, 1 insertion(+) Looks good. Merged to master as of 4717bc7bc8591628d40429ae7911f80e20b6c7f8
diff --git a/external/test/test.sh b/external/test/test.sh index 7a60c93280a7..c79a48648acb 100755 --- a/external/test/test.sh +++ b/external/test/test.sh @@ -91,6 +91,7 @@ run_tests() { for the_test in $all_tests; do export CUR_TEST=$(basename $the_test) export RESULT="$res_path/$CUR_TEST" + echo "running $the_test" . "$the_test"; R="$?"
Currently running 'make check' results in nothing but a message indicating that all tests passed. If a test runs in a wood and it doesn't make a sound, did it run at all? Signed-off-by: Oliver O'Halloran <oohall@gmail.com> --- external/test/test.sh | 1 + 1 file changed, 1 insertion(+)