@@ -58,6 +58,7 @@ if (chip_build_tests) {
58
58
" ${ chip_root } /src/crypto/tests" ,
59
59
" ${ chip_root } /src/inet/tests" ,
60
60
" ${ chip_root } /src/lib/address_resolve/tests" ,
61
+ " ${ chip_root } /src/app/server-cluster/tests" ,
61
62
" ${ chip_root } /src/lib/asn1/tests" ,
62
63
" ${ chip_root } /src/lib/core/tests" ,
63
64
" ${ chip_root } /src/lib/format/tests" ,
@@ -94,12 +95,19 @@ if (chip_build_tests) {
94
95
# symbols for ember mocks which are used by other tests.
95
96
96
97
tests += [
97
- " ${ chip_root } /src/data-model-providers/codegen/tests" ,
98
98
" ${ chip_root } /src/setup_payload/tests" ,
99
99
" ${ chip_root } /src/transport/raw/tests" ,
100
100
]
101
101
}
102
102
103
+ if (current_os != " zephyr" && current_os != " mbed" &&
104
+ chip_device_platform != " efr32" ) {
105
+ # Disabled from "one single binary" since the "mocks" contain duplicate sybmols
106
+ # with ember
107
+ # Disabled on EFR32 since "include <random>" fails with `::fabs` not defined
108
+ tests += [ " ${ chip_root } /src/data-model-providers/codegen/tests" ]
109
+ }
110
+
103
111
if (chip_device_platform != " efr32" ) {
104
112
tests += [
105
113
" ${ chip_root } /src/app/tests" ,
@@ -108,9 +116,6 @@ if (chip_build_tests) {
108
116
# https://github.com/project-chip/connectedhomeip/issues/35624
109
117
" ${ chip_root } /src/credentials/tests" ,
110
118
" ${ chip_root } /src/lib/support/tests" ,
111
-
112
- # Disabled on EFR32 since "include <random>" fails with `::fabs` not defined
113
- " ${ chip_root } /src/app/server-cluster/tests" ,
114
119
]
115
120
}
116
121
0 commit comments