Added compiler version to the test report (GCC only).
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@922 35acf78f-673a-0410-8e92-d51de3d6d3f4master
parent
40db226680
commit
2b3bb8642b
|
@ -248,6 +248,10 @@ msg_t TestThread(void *p) {
|
|||
test_println(CH_KERNEL_VERSION);
|
||||
test_print("*** Architecture: ");
|
||||
test_println(CH_ARCHITECTURE_NAME);
|
||||
#ifdef __GNUC__
|
||||
test_print("*** GCC Version: ");
|
||||
test_println(__VERSION__);
|
||||
#endif
|
||||
test_println("");
|
||||
|
||||
global_fail = FALSE;
|
||||
|
|
Loading…
Reference in New Issue