diff mbox series

external/test: Print the name of each test

Message ID 20171130053005.21391-1-oohall@gmail.com
State Accepted
Headers show
Series external/test: Print the name of each test | expand

Commit Message

Oliver O'Halloran Nov. 30, 2017, 5:30 a.m. UTC
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(+)

Comments

Stewart Smith Dec. 1, 2017, 6:48 a.m. UTC | #1
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 mbox series

Patch

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="$?"