From 09a35993da8bf4e825d342936a92b83d104d8bef Mon Sep 17 00:00:00 2001 From: Thom Wiggers Date: Mon, 15 Apr 2019 16:21:44 +0200 Subject: [PATCH] Skip Valgrind on OSX --- test/test_functest.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test_functest.py b/test/test_functest.py index 0768afdd..f707e491 100644 --- a/test/test_functest.py +++ b/test/test_functest.py @@ -48,6 +48,8 @@ def check_functest_sanitizers(implementation): raise unittest.SkipTest("Clang does not support ASAN on ppc") elif platform.machine() in ['armv7l', 'aarch64']: env = {'ASAN_OPTIONS': 'detect_leaks=0'} + elif platform.system() == 'Darwin': + raise unittest.SkipTest('valgrind is not reliable on OSX') else: print("Supported platform: {}".format(platform.machine()))