From 52671df19ef5111a0f95248ed9338e77571a57b3 Mon Sep 17 00:00:00 2001 From: Thom Wiggers Date: Wed, 23 Jan 2019 12:42:52 +0100 Subject: [PATCH] don't run the symbol namespace check on OSX --- test/check_symbol_namespace.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/check_symbol_namespace.py b/test/check_symbol_namespace.py index 306be12d..4a020801 100644 --- a/test/check_symbol_namespace.py +++ b/test/check_symbol_namespace.py @@ -6,6 +6,10 @@ For a given SCHEME, this script verifies that all exported symbols are properly namespaced, i.e., all start with "PQCLEAN_SCHEMENAME_" """ +if sys.platform != 'linux': + print("This test is not supported on non-Linux platforms") + exit(0) + if len(sys.argv) != 2: print("Provide a scheme name (e.g. crypto_kem/kyber768) as argv[1]") exit(1)