File tree 4 files changed +275
-381
lines changed
4 files changed +275
-381
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ if (chip_build_tests) {
86
86
chip_device_platform != " efr32" ) {
87
87
tests += [
88
88
" ${ chip_root } /src/setup_payload/tests" ,
89
+ " ${ chip_root } /src/setup_payload/tests:tests_nltest" ,
89
90
" ${ chip_root } /src/transport/raw/tests" ,
90
91
]
91
92
}
Original file line number Diff line number Diff line change 15
15
import (" //build_overrides/build.gni" )
16
16
import (" //build_overrides/chip.gni" )
17
17
import (" //build_overrides/nlunit_test.gni" )
18
+ import (" //build_overrides/pigweed.gni" )
18
19
19
20
import (" ${ chip_root } /build/chip/chip_test_suite.gni" )
20
21
21
- chip_test_suite_using_nltest (" tests" ) {
22
+ chip_test_suite (" tests" ) {
22
23
output_name = " libSetupPayloadTests"
23
24
24
25
test_sources = [
25
- " TestAdditionalDataPayload.cpp" ,
26
26
" TestManualCode.cpp" ,
27
27
" TestQRCode.cpp" ,
28
+ ]
29
+
30
+ sources = [ " TestHelpers.h" ]
31
+
32
+ cflags = [ " -Wconversion" ]
33
+
34
+ public_deps = [
35
+ " ${ chip_root } /src/platform" ,
36
+ " ${ chip_root } /src/setup_payload" ,
37
+ ]
38
+ }
39
+
40
+ chip_test_suite_using_nltest (" tests_nltest" ) {
41
+ output_name = " libSetupPayloadTestsNL"
42
+
43
+ test_sources = [
44
+ " TestAdditionalDataPayload.cpp" ,
28
45
" TestQRCodeTLV.cpp" ,
29
46
]
30
47
You can’t perform that action at this time.
0 commit comments