From 2654029a38f993b1863c482c5e535fdacd1363a9 Mon Sep 17 00:00:00 2001 From: Michael Spang Date: Tue, 20 Oct 2020 00:43:19 -0400 Subject: [PATCH] Disable DNS tests on Raspberry Pi (#3313) * Disable DNS tests on Raspberry Pi These tests don't work on the Pi currently, cause unknown. * Add comment --- src/inet/tests/BUILD.gn | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/inet/tests/BUILD.gn b/src/inet/tests/BUILD.gn index 69a127c140b4cf..50715814435dd8 100644 --- a/src/inet/tests/BUILD.gn +++ b/src/inet/tests/BUILD.gn @@ -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",