Skip too-slow valgrind tests on i386 CircleCI builds
This commit is contained in:
parent
0ee03d4c3f
commit
8b4f656376
@ -20,6 +20,8 @@ def check_valgrind(implementation: pqclean.Implementation):
|
|||||||
if (platform.machine() not in ('i386', 'x86_64') or
|
if (platform.machine() not in ('i386', 'x86_64') or
|
||||||
platform.system() != 'Linux'):
|
platform.system() != 'Linux'):
|
||||||
raise unittest.SkipTest()
|
raise unittest.SkipTest()
|
||||||
|
if os.environ.get('CIRCLECI') == 'true' and os.environ.get('ARCH') == 'i386' and (implementation.scheme.name == 'frodokem1344aes' or implementation.scheme.name == 'frodokem1344shake'):
|
||||||
|
raise unittest.SkipTest('Skipping too-slow valgrind test')
|
||||||
|
|
||||||
helpers.make(TYPE=implementation.scheme.type,
|
helpers.make(TYPE=implementation.scheme.type,
|
||||||
SCHEME=implementation.scheme.name,
|
SCHEME=implementation.scheme.name,
|
||||||
|
Loading…
Reference in New Issue
Block a user