Skip to content

Commit

Permalink
Fix EFR32 unit test (#14238)
Browse files Browse the repository at this point in the history
Disable TestExchangeMgr, which has been broken for a while on EFR32
and stops the rest of the tests from being run and reported.
  • Loading branch information
rgoliver authored and pull[bot] committed Feb 23, 2024
1 parent 9c3599c commit dc2abb7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/messaging/tests/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -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" ]
Expand Down

0 comments on commit dc2abb7

Please sign in to comment.