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" ]