@@ -40,60 +40,33 @@ chip_test_suite("tests") {
40
40
" TestJsonToTlv.cpp" ,
41
41
" TestJsonToTlvToJson.cpp" ,
42
42
" TestPersistedCounter.cpp" ,
43
+ " TestPool.cpp" ,
43
44
" TestPrivateHeap.cpp" ,
44
45
" TestSafeInt.cpp" ,
45
46
" TestSafeString.cpp" ,
46
47
" TestScoped.cpp" ,
47
48
" TestScopedBuffer.cpp" ,
48
49
" TestSorting.cpp" ,
49
50
" TestSpan.cpp" ,
51
+ " TestStateMachine.cpp" ,
50
52
" TestStaticSupportSmartPtr.cpp" ,
51
53
" TestStringBuilder.cpp" ,
52
54
" TestStringSplitter.cpp" ,
53
55
" TestTestPersistentStorageDelegate.cpp" ,
56
+ " TestThreadOperationalDataset.cpp" ,
54
57
" TestTimeUtils.cpp" ,
55
58
" TestTlvJson.cpp" ,
56
59
" TestTlvToJson.cpp" ,
57
60
" TestUtf8.cpp" ,
58
61
" TestVariant.cpp" ,
59
62
" TestZclString.cpp" ,
60
63
]
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
-
93
64
if (current_os != " mbed" ) {
94
65
test_sources += [ " TestCHIPArgParser.cpp" ]
95
66
}
96
67
68
+ sources = []
69
+
97
70
cflags = [
98
71
" -Wconversion" ,
99
72
@@ -109,9 +82,7 @@ chip_test_suite_using_nltest("tests_nltest") {
109
82
" ${ chip_root } /src/lib/core" ,
110
83
" ${ chip_root } /src/lib/support:static-support" ,
111
84
" ${ chip_root } /src/lib/support:testing" ,
112
- " ${ chip_root } /src/lib/support:testing_nlunit" ,
113
85
" ${ chip_root } /src/lib/support/jsontlv" ,
114
86
" ${ chip_root } /src/platform" ,
115
- " ${ nlunit_test_root } :nlunit-test" ,
116
87
]
117
88
}
0 commit comments