diff options
Diffstat (limited to 'test/lib')
-rw-r--r-- | test/lib/ch_test.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/test/lib/ch_test.c b/test/lib/ch_test.c index c78cebea2..f922146a6 100644 --- a/test/lib/ch_test.c +++ b/test/lib/ch_test.c @@ -229,11 +229,13 @@ msg_t test_execute(BaseSequentialStream *stream, const testsuite_t *tsp) { test_chp = stream;
test_println("");
-#if defined(TEST_SUITE_NAME)
- test_println("*** " TEST_SUITE_NAME);
-#else
- test_println("*** ChibiOS test suite");
-#endif
+ if (tsp->name != NULL) {
+ test_print("*** ");
+ test_println(tsp->name);
+ }
+ else {
+ test_println("*** Test Suite");
+ }
test_println("***");
test_print("*** Compiled: ");
test_println(__DATE__ " - " __TIME__);
|