From 2b3bb8642b7fa795428d2e1d26e847a9e77d5a71 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sat, 25 Apr 2009 15:32:28 +0000 Subject: [PATCH] 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-d51de3d6d3f4 --- test/test.c | 4 ++++ 1 file changed, 4 insertions(+) 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;