Skip to content

Commit

Permalink
Attempt to enable asn1 and ble tests in esp32 - see if they pass or not
Browse files Browse the repository at this point in the history
  • Loading branch information
andy31415 committed Nov 26, 2020
1 parent aa7c9d5 commit 1ccfa6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ if (chip_build_tests) {
"${chip_root}/src/app/tests",
"${chip_root}/src/crypto/tests",
"${chip_root}/src/inet/tests",
"${chip_root}/src/lib/asn1/tests",
"${chip_root}/src/lib/mdns/minimal/tests",
"${chip_root}/src/messaging/tests",
"${chip_root}/src/protocols/bdx/tests",
Expand All @@ -52,15 +53,14 @@ if (chip_build_tests) {

if (chip_device_platform != "esp32") {
deps += [
"${chip_root}/src/lib/asn1/tests",
"${chip_root}/src/lib/core/tests",
"${chip_root}/src/lib/support/tests",
"${chip_root}/src/platform/tests",
"${chip_root}/src/setup_payload/tests",
]
}

if (chip_config_network_layer_ble && chip_device_platform != "esp32") {
if (chip_config_network_layer_ble) {
deps += [ "${chip_root}/src/ble/tests" ]
}

Expand Down

0 comments on commit 1ccfa6d

Please sign in to comment.