File tree 1 file changed +5
-3
lines changed
src/test_driver/mbed/unit_tests/main
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 17
17
*/
18
18
19
19
#include " netsocket/WiFiInterface.h"
20
- #include < lib/support/UnitTestRegistration.h>
21
20
#include < lib/support/logging/CHIPLogging.h>
22
21
#include < platform/mbed/Logging.h>
23
22
@@ -63,8 +62,11 @@ int main()
63
62
64
63
ChipLogProgress (NotSpecified, " Mbed unit-tests application run" );
65
64
66
- int status = RunRegisteredUnitTests ();
67
- ChipLogProgress (NotSpecified, " CHIP test status: %d" , status);
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
+ // status += RunRegisteredUnitTests();
69
+ // ChipLogProgress(NotSpecified, "CHIP test status: %d", status);
68
70
69
71
return status;
70
72
}
You can’t perform that action at this time.
0 commit comments