Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit aec7ebf

Browse files
authoredMay 18, 2024··
Merge branch 'master' into 0415_add_rpc_event
2 parents adefbfc + 443bb9c commit aec7ebf

38 files changed

+1501
-397
lines changed
 

‎.vscode/launch.json

+9
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,15 @@
402402
"cwd": "${workspaceFolder}"
403403
},
404404

405+
{
406+
"name": "Fabric Admin (Linux)",
407+
"type": "lldb",
408+
"request": "launch",
409+
"program": "${workspaceFolder}/out/debug/standalone/fabric-admin",
410+
"args": ["--log-file-path", "/tmp/fabric_admin.log"],
411+
"cwd": "${workspaceFolder}"
412+
},
413+
405414
{
406415
"name": "Fabric Bridge App (Linux)",
407416
"type": "lldb",

‎docs/guides/openiotsdk_unit_tests.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ tests that are located in the `test` directory, e.g. `src/inet/tests`. Those
66
sources are built as a static library that can be linked to the unit test
77
application separately or as a monolithic test library. The common Matter test
88
library collects all test cases and provides the engine based on
9-
[Nest Labs Unit Test](https://github.com/nestlabs/nlunit-test) to run them in
10-
the application.
9+
[Pigweed Unit Test](https://pigweed.dev/pw_unit_test) to run them in the
10+
application.
1111

1212
The Open IoT SDK unit tests implementation are located in the
1313
`src/test_driver/openiotsdk/unit-tests` directory. This project builds a
@@ -27,6 +27,7 @@ ChipCryptoTests
2727
CoreTests
2828
CredentialsTest
2929
DataModelTests
30+
ICDServerTests
3031
InetLayerTests
3132
MdnsTests
3233
MessagingLayerTests
@@ -41,7 +42,6 @@ SetupPayloadTests
4142
SupportTests
4243
SystemLayerTests
4344
TestShell
44-
TransportLayerTests
4545
UserDirectedCommissioningTests
4646
```
4747

0 commit comments

Comments
 (0)
Please sign in to comment.