mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-22 07:35:38 +00:00
don't run the symbol namespace check on OSX
This commit is contained in:
parent
879b804da5
commit
52671df19e
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user