git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9185 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
Giovanni Di Sirio 2016-03-30 14:57:20 +00:00
parent 30f2e5da93
commit 4907ec2164
1 changed files with 9 additions and 2 deletions

View File

@ -233,13 +233,16 @@ msg_t test_execute(BaseSequentialStream *stream) {
test_println("***");
test_print("*** Compiled: ");
test_println(__DATE__ " - " __TIME__);
#ifdef PLATFORM_NAME
#if defined(PLATFORM_NAME)
test_print("*** Platform: ");
test_println(PLATFORM_NAME);
#endif
#ifdef BOARD_NAME
#if defined(BOARD_NAME)
test_print("*** Test Board: ");
test_println(BOARD_NAME);
#endif
#if defined(TEST_REPORT_HOOK_HEADER)
TEST_REPORT_HOOK_HEADER
#endif
test_println("");
@ -283,6 +286,10 @@ msg_t test_execute(BaseSequentialStream *stream) {
else
test_println("SUCCESS");
#if defined(TEST_REPORT_HOOK_END)
TEST_REPORT_HOOK_END
#endif
return (msg_t)test_global_fail;
}