Skip to content

Commit 2424906

Browse files
committed
removing nl_unit infra from mbed
1 parent 2d9f741 commit 2424906

File tree

1 file changed

+5
-3
lines changed
  • src/test_driver/mbed/unit_tests/main

1 file changed

+5
-3
lines changed

src/test_driver/mbed/unit_tests/main/main.cpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
*/
1818

1919
#include "netsocket/WiFiInterface.h"
20-
#include <lib/support/UnitTestRegistration.h>
2120
#include <lib/support/logging/CHIPLogging.h>
2221
#include <platform/mbed/Logging.h>
2322

@@ -63,8 +62,11 @@ int main()
6362

6463
ChipLogProgress(NotSpecified, "Mbed unit-tests application run");
6564

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);
6870

6971
return status;
7072
}

0 commit comments

Comments
 (0)