Skip to content

Commit

Permalink
Fix EFR32 unit test
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
Rob Oliver committed Jan 25, 2022
1 parent f5bf5e4 commit 85d9d8b
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 85d9d8b

Please sign in to comment.