From 85d9d8be65f6f2d998ecd20c0d9b8ba30bb4449e Mon Sep 17 00:00:00 2001 From: Rob Oliver Date: Tue, 25 Jan 2022 09:55:24 -0500 Subject: [PATCH] Fix EFR32 unit test Disable TestExchangeMgr, which has been broken for a while on EFR32 and stops the rest of the tests from being run and reported. --- src/messaging/tests/BUILD.gn | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/messaging/tests/BUILD.gn b/src/messaging/tests/BUILD.gn index bfc6ce28bd33b9..68b2e2aa11bf44 100644 --- a/src/messaging/tests/BUILD.gn +++ b/src/messaging/tests/BUILD.gn @@ -42,14 +42,14 @@ static_library("helpers") { chip_test_suite("tests") { output_name = "libMessagingLayerTests" - sources = [ - "TestExchangeMgr.cpp", - "TestMessagingLayer.h", - ] + sources = [ "TestMessagingLayer.h" ] if (chip_device_platform != "efr32") { - # TODO(#10447): Test has HF on EFR32. - sources += [ "TestReliableMessageProtocol.cpp" ] + # TODO(#10447): ReliableMessage Test has HF, and ExchangeMgr hangs on EFR32. + sources += [ + "TestExchangeMgr.cpp", + "TestReliableMessageProtocol.cpp", + ] } cflags = [ "-Wconversion" ]