1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-22 15:39:07 +00:00

don't run the symbol namespace check on OSX

This commit is contained in:
Thom Wiggers 2019-01-23 12:42:52 +01:00
parent 879b804da5
commit 52671df19e
No known key found for this signature in database
GPG Key ID: 001BB0A7CE26E363

View File

@ -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_" 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: if len(sys.argv) != 2:
print("Provide a scheme name (e.g. crypto_kem/kyber768) as argv[1]") print("Provide a scheme name (e.g. crypto_kem/kyber768) as argv[1]")
exit(1) exit(1)