Skip to content

Commit 007e11d

Browse files
authored
pw_unit_test migration: lib support batch 5 (project-chip#33238)
* pw_unit_test migration: lib support batch 5 * pw_unit_test migration: lib support batch 4 (project-chip#33199) * pw_unit_test migration: lib support batch 4 * fix merge error BUILD.gn * pw_unit_test migration: lib support batch 5 * newline * removing commented-out code * convert TestCHIPArgParser test
1 parent a8cfbac commit 007e11d

File tree

7 files changed

+342
-529
lines changed

7 files changed

+342
-529
lines changed

src/BUILD.gn

-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ if (chip_build_tests) {
9999
"${chip_root}/src/credentials/tests",
100100
"${chip_root}/src/lib/format/tests",
101101
"${chip_root}/src/lib/support/tests",
102-
"${chip_root}/src/lib/support/tests:tests_nltest",
103102
"${chip_root}/src/protocols/secure_channel/tests",
104103
"${chip_root}/src/protocols/secure_channel/tests:tests_nltest",
105104
"${chip_root}/src/system/tests",

src/lib/support/tests/BUILD.gn

+5-34
Original file line numberDiff line numberDiff line change
@@ -40,60 +40,33 @@ chip_test_suite("tests") {
4040
"TestJsonToTlv.cpp",
4141
"TestJsonToTlvToJson.cpp",
4242
"TestPersistedCounter.cpp",
43+
"TestPool.cpp",
4344
"TestPrivateHeap.cpp",
4445
"TestSafeInt.cpp",
4546
"TestSafeString.cpp",
4647
"TestScoped.cpp",
4748
"TestScopedBuffer.cpp",
4849
"TestSorting.cpp",
4950
"TestSpan.cpp",
51+
"TestStateMachine.cpp",
5052
"TestStaticSupportSmartPtr.cpp",
5153
"TestStringBuilder.cpp",
5254
"TestStringSplitter.cpp",
5355
"TestTestPersistentStorageDelegate.cpp",
56+
"TestThreadOperationalDataset.cpp",
5457
"TestTimeUtils.cpp",
5558
"TestTlvJson.cpp",
5659
"TestTlvToJson.cpp",
5760
"TestUtf8.cpp",
5861
"TestVariant.cpp",
5962
"TestZclString.cpp",
6063
]
61-
sources = []
62-
63-
cflags = [
64-
"-Wconversion",
65-
66-
# TODO(#21255): work-around for SimpleStateMachine constructor issue.
67-
"-Wno-uninitialized",
68-
69-
# TestStringSplitter intentionally validates string overflows.
70-
"-Wno-stringop-truncation",
71-
]
72-
73-
public_deps = [
74-
"${chip_root}/src/credentials",
75-
"${chip_root}/src/lib/core",
76-
"${chip_root}/src/lib/support:static-support",
77-
"${chip_root}/src/lib/support:testing",
78-
"${chip_root}/src/lib/support/jsontlv",
79-
"${chip_root}/src/platform",
80-
]
81-
}
82-
83-
chip_test_suite_using_nltest("tests_nltest") {
84-
output_name = "libSupportTestsNL"
85-
86-
test_sources = [
87-
"TestPool.cpp",
88-
"TestStateMachine.cpp",
89-
"TestThreadOperationalDataset.cpp",
90-
]
91-
sources = []
92-
9364
if (current_os != "mbed") {
9465
test_sources += [ "TestCHIPArgParser.cpp" ]
9566
}
9667

68+
sources = []
69+
9770
cflags = [
9871
"-Wconversion",
9972

@@ -109,9 +82,7 @@ chip_test_suite_using_nltest("tests_nltest") {
10982
"${chip_root}/src/lib/core",
11083
"${chip_root}/src/lib/support:static-support",
11184
"${chip_root}/src/lib/support:testing",
112-
"${chip_root}/src/lib/support:testing_nlunit",
11385
"${chip_root}/src/lib/support/jsontlv",
11486
"${chip_root}/src/platform",
115-
"${nlunit_test_root}:nlunit-test",
11687
]
11788
}

src/lib/support/tests/TestCHIPArgParser.cpp

+80-134
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)