aboutsummaryrefslogtreecommitdiff
path: root/module/hnh/test/testrunner.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/hnh/test/testrunner.scm')
-rw-r--r--module/hnh/test/testrunner.scm10
1 files changed, 7 insertions, 3 deletions
diff --git a/module/hnh/test/testrunner.scm b/module/hnh/test/testrunner.scm
index 38df0ee1..b3951c34 100644
--- a/module/hnh/test/testrunner.scm
+++ b/module/hnh/test/testrunner.scm
@@ -6,8 +6,8 @@
:use-module (ice-9 pretty-print)
:use-module (ice-9 format)
:use-module (ice-9 curried-definitions)
- :export (verbose? construct-test-runner)
- )
+ :export (verbose? construct-test-runner
+ test-runner-test-name/description))
(define verbose? (make-parameter #f))
@@ -107,8 +107,12 @@
(with-output-to-string
(lambda ()
(display
- (red (format #f "Test failed: ~a~%"
+ (yellow (format #f "Test failed: ~a~%"
(test-runner-test-name/description runner))))
+ (display
+ (yellow
+ (format #f " Path: ~s~%"
+ (cdr (test-runner-group-path runner)))))
(test-runner-describe-error runner 0)))
err-queue))