Skip to content

Commit

Permalink
Fix EFR32 unit test (project-chip#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 selissia committed Jan 28, 2022
1 parent 88f3b0f commit 272cbfd
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 272cbfd

Please sign in to comment.