File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
platform/tests/TESTS/mbed_platform/stats_sys Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -153,5 +153,5 @@ jobs:
153153 if : ${{ matrix.profile == 'full' }}
154154 run : |
155155 rm -rf __build
156- cmake -S . -B __build -GNinja -DUPLOAD_METHOD=NONE -DMBED_GREENTEA_WIFI_SECURE_SSID=SomeNetwork -DMBED_GREENTEA_WIFI_SECURE_PASSWORD=SomePassword -DCMAKE_CTEST_ARGUMENTS="--output-on-failure;-V" -DMBED_BUILD_GREENTEA_TESTS=ON -DMBED_GREENTEA_SERIAL_PORT=/dev/ttyDUMMY -DMBED_TARGET=${{ matrix.target }}
156+ cmake -S . -B __build -GNinja -DUPLOAD_METHOD=NONE -DMBED_GREENTEA_WIFI_SECURE_SSID=SomeNetwork -DMBED_GREENTEA_WIFI_SECURE_PASSWORD=SomePassword -DCMAKE_CTEST_ARGUMENTS="--output-on-failure;-V" -DMBED_BUILD_GREENTEA_TESTS=ON -DMBED_GREENTEA_SERIAL_PORT=/dev/ttyDUMMY -DMBED_TARGET=${{ matrix.target }} -DMBED_APP_JSON_PATH=TESTS/configs/greentea_full.json
157157 cmake --build __build
Original file line number Diff line number Diff line change @@ -36,9 +36,9 @@ void test_sys_info()
3636 // Print a summary of the stats, just for debug purposes
3737 printf (" Dump of Mbed System Stats: -------------------------------------\n " );
3838 printf (" - OS Version: %" PRIu32 " .%" PRIu32 " .%" PRIu32 " \n " ,
39- stats.os_version / 10000 ,
40- (stats.os_version % 10000 ) / 100 ,
41- ((stats.os_version % 10000 ) % 100 ));
39+ stats.os_version / 10000 ,
40+ (stats.os_version % 10000 ) / 100 ,
41+ ((stats.os_version % 10000 ) % 100 ));
4242 printf (" - CPUID Register: 0x%" PRIx32 " \n " , stats.cpu_id );
4343 printf (" - Compiler Version: %" PRIu32 " \n " , stats.compiler_version );
4444
@@ -48,7 +48,7 @@ void test_sys_info()
4848#endif
4949
5050#if defined(__IAR_SYSTEMS_ICC__)
51- TEST_ASSERT_EQUAL (IAR, stats.compiler_id );
51+ TEST_ASSERT_EQUAL (IAR, stats.compiler_id );
5252#elif defined(__ARMCC_VERSION)
5353 TEST_ASSERT_EQUAL (ARM, stats.compiler_id );
5454#elif defined(__GNUC__)
You can’t perform that action at this time.
0 commit comments