Skip to content

Commit

Permalink
Build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjerryjohns committed Nov 28, 2021
1 parent c0475e0 commit f403549
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/controller/python/test/test_scripts/cluster_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ async def TestReadRequests(cls, devCtrl):

logger.info("6: Reading E* C* A*")
req = [
None
'*'
]
await devCtrl.ReadAttribute(nodeid=NODE_ID, attributes=req)

Expand Down
3 changes: 2 additions & 1 deletion src/controller/tests/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ chip_test_suite("tests") {

test_sources = [ "TestCommissionableNodeController.cpp" ]

if (chip_device_platform != "mbed" && chip_device_platform != "efr32") {
if (chip_device_platform != "mbed" && chip_device_platform != "efr32" &&
chip_device_platform != "esp32") {
test_sources += [ "TestServerCommandDispatch.cpp" ]
test_sources += [ "TestReadChunking.cpp" ]
}
Expand Down
3 changes: 2 additions & 1 deletion src/controller/tests/data_model/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ import("${chip_root}/src/platform/device.gni")
chip_test_suite("data_model") {
output_name = "libDataModelTests"

if (chip_device_platform != "mbed" && chip_device_platform != "efr32") {
if (chip_device_platform != "mbed" && chip_device_platform != "efr32" &&
chip_device_platform != "esp32") {
test_sources = [ "TestCommands.cpp" ]
test_sources += [ "TestRead.cpp" ]
test_sources += [ "TestWrite.cpp" ]
Expand Down

0 comments on commit f403549

Please sign in to comment.