From 991218a8b069c20115095a2509b8abafa9230c98 Mon Sep 17 00:00:00 2001 From: nirenjan Date: Sat, 29 Jul 2017 10:07:12 -0700 Subject: [PATCH] Skip tests on OSX --- tests/common_infra.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/common_infra.sh b/tests/common_infra.sh index 72639c7..6d95f06 100644 --- a/tests/common_infra.sh +++ b/tests/common_infra.sh @@ -52,6 +52,12 @@ X52_LED_THROTTLE_OFF=1400 find_programs() { + # Tests and distcheck do not work on OSX, skip the tests + if [[ `uname -s` == [Dd]arwin* ]] + then + exit $EXIT_SKIP + fi + # Find the X52cli script X52CLI=$(find .. -path '*/cli/x52cli' -executable)