aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/test.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test.c b/test/test.c
index 15e044647..3beb3e59a 100644
--- a/test/test.c
+++ b/test/test.c
@@ -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;