From ddb9c4ca1cc1f284054c5c04befcdd883ffe5885 Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Mon, 7 Apr 2003 17:50:41 +0000 Subject: [PATCH] * guile-test: added "Running test FOO" output by default. There may be a good reason to remove this, but the output can be helpful in determining where a failure occurred. --- test-suite/guile-test | 1 + 1 file changed, 1 insertion(+) diff --git a/test-suite/guile-test b/test-suite/guile-test index 1d16368d8..9cdbb374b 100755 --- a/test-suite/guile-test +++ b/test-suite/guile-test @@ -216,6 +216,7 @@ ;; Run the tests. (for-each (lambda (test) + (display (string-append "Running " test "\n")) (with-test-prefix test (load (test-file-name test)))) tests)