Skip to content

Commit c7ad3ad

Browse files
author
Jamie Smith
committed
CI fixes
1 parent 8b86f93 commit c7ad3ad

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/greentea_cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

platform/tests/TESTS/mbed_platform/stats_sys/main.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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__)

0 commit comments

Comments
 (0)