We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6475996 commit ef22d3aCopy full SHA for ef22d3a
src/test_driver/mbed/unit_tests/main/main.cpp
@@ -62,12 +62,14 @@ int main()
62
63
ChipLogProgress(NotSpecified, "Mbed unit-tests application run");
64
65
- int status = 0;
66
// Migration to pw_unit_tests was not done for mbed since the unit-testing FW used to run out of flash and was disabled from
67
// GitHub Actions workflows: https://github.com/project-chip/connectedhomeip/pull/15966
68
69
- // status += RunRegisteredUnitTests();
+ // int status = RunRegisteredUnitTests();
70
// ChipLogProgress(NotSpecified, "CHIP test status: %d", status);
71
+ ChipLogError(NotSpecified, "Unit Tests are currently DISABLED for Mbed");
72
+ int status = 1;
73
+
74
return status;
75
}
0 commit comments