Fix compiler flags for ARMC6 in sys stats test

pull/9888/head
Senthil Ramakrishnan 2019-02-27 19:31:07 -06:00 committed by Senthil Ramakrishnan
parent 96c74d4dce
commit 15cb4a4fee
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ void test_sys_info()
#if defined(__IAR_SYSTEMS_ICC__) #if defined(__IAR_SYSTEMS_ICC__)
TEST_ASSERT_EQUAL(IAR, stats.compiler_id); TEST_ASSERT_EQUAL(IAR, stats.compiler_id);
#elif defined(__CC_ARM) #elif defined(__ARMCC_VERSION)
TEST_ASSERT_EQUAL(ARM, stats.compiler_id); TEST_ASSERT_EQUAL(ARM, stats.compiler_id);
#elif defined(__GNUC__) #elif defined(__GNUC__)
TEST_ASSERT_EQUAL(GCC_ARM, stats.compiler_id); TEST_ASSERT_EQUAL(GCC_ARM, stats.compiler_id);