From f40354991ed8c24723bb744bdc16e423e98eac46 Mon Sep 17 00:00:00 2001 From: Jerry Johns Date: Sun, 28 Nov 2021 07:29:57 -0800 Subject: [PATCH] Build fixes --- src/controller/python/test/test_scripts/cluster_objects.py | 2 +- src/controller/tests/BUILD.gn | 3 ++- src/controller/tests/data_model/BUILD.gn | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/controller/python/test/test_scripts/cluster_objects.py b/src/controller/python/test/test_scripts/cluster_objects.py index 2bcf85f81d780b..c1d1f584bea585 100644 --- a/src/controller/python/test/test_scripts/cluster_objects.py +++ b/src/controller/python/test/test_scripts/cluster_objects.py @@ -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) diff --git a/src/controller/tests/BUILD.gn b/src/controller/tests/BUILD.gn index a819b0ba0f1730..563c32e6f36ed6 100644 --- a/src/controller/tests/BUILD.gn +++ b/src/controller/tests/BUILD.gn @@ -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" ] } diff --git a/src/controller/tests/data_model/BUILD.gn b/src/controller/tests/data_model/BUILD.gn index 8293d9f1b827e5..ef85c92985ae29 100644 --- a/src/controller/tests/data_model/BUILD.gn +++ b/src/controller/tests/data_model/BUILD.gn @@ -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" ]