You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
THNETDIR / WIFINM: Test scripts and small fixes (#34469)
* Thread Network Directory GetOperationalDataset does not required timed invoke
See CHIP-Specifications/connectedhomeip-spec#10106
* Actually return the dataset in GetOperationalDataset
* Add test scripts for THNETDIR cluster
Base on CHIP-Specifications/chip-test-plans#4322
but contains some additional steps which will be added to the test plan.
Some validations depend on PR #34487 and are commented out.
* Darwin: Avoid linker issues with pigweed clang
* Prefix network-manager binary name with matter-
* Run THNETDIR tests against network-manager app in CI
* Add test script for WIFINM cluster and include in CI
* Add network-manager app to darwin-tests.yaml
* Update WIFINM cluster definition and test to match latest spec
Based on CHIP-Specifications/connectedhomeip-spec#10025
* zap_regen_all
* Disable tests for NEEDS_TIMED_INTERACTION for now
These currently fail when run with darwin-framework-tool because
Matter.framework automatically defaults to using a timed interaction when the
cluster command requires it, defeating the test.
* Fix network-manager-app zap/matter files
* Add apiMaturity attributes
* Add missing attribute read step and improve step names
Copy file name to clipboardexpand all lines: scripts/tests/run_test_suite.py
+8-1
Original file line number
Diff line number
Diff line change
@@ -260,6 +260,9 @@ def cmd_list(context):
260
260
@click.option(
261
261
'--rvc-app',
262
262
help='what rvc app to use')
263
+
@click.option(
264
+
'--network-manager-app',
265
+
help='what network-manager app to use')
263
266
@click.option(
264
267
'--chip-repl-yaml-tester',
265
268
help='what python script to use for running yaml tests using chip-repl as controller')
@@ -291,7 +294,7 @@ def cmd_list(context):
291
294
help='Number of tests that are expected to fail in each iteration. Overall test will pass if the number of failures matches this. Nonzero values require --keep-going')
0 commit comments