Skip to content

Commit

Permalink
Disable DNS tests on Raspberry Pi (#3313)
Browse files Browse the repository at this point in the history
* Disable DNS tests on Raspberry Pi

These tests don't work on the Pi currently, cause unknown.

* Add comment
  • Loading branch information
mspang authored and pull[bot] committed Oct 27, 2020
1 parent 9cd693d commit 2654029
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/inet/tests/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ chip_test_suite("tests") {
"TestInetEndPoint",
]

if (current_os != "mac" && chip_device_platform != "esp32") {
# This fails on Raspberry Pi (Linux arm64), so only enable on Linux
# x64.
if (current_os != "mac" && chip_device_platform != "esp32" &&
current_cpu == "x64") {
sources += [
"TestInetLayerDNS.cpp",
"TestLwIPDNS.cpp",
Expand Down

0 comments on commit 2654029

Please sign in to comment.