24 lines
903 B
Python
24 lines
903 B
Python
import os
|
|
import pqclean
|
|
import helpers
|
|
|
|
def test_functest():
|
|
for scheme in pqclean.Scheme.all_schemes():
|
|
for implementation in scheme.implementations:
|
|
yield check_functest, scheme.name, implementation.name
|
|
|
|
def check_functest(scheme_name, implementation_name):
|
|
implementation = pqclean.Implementation.by_name(scheme_name, implementation_name)
|
|
helpers.run_subprocess(
|
|
['make', 'clean', 'TYPE=' + implementation.scheme.type, 'SCHEME=' + scheme_name, 'IMPLEMENTATION=' + implementation_name],
|
|
os.path.join('..', 'test')
|
|
)
|
|
helpers.run_subprocess(
|
|
['make', 'TYPE=' + implementation.scheme.type, 'SCHEME=' + scheme_name, 'IMPLEMENTATION=' + implementation_name],
|
|
os.path.join('..', 'test')
|
|
)
|
|
helpers.run_subprocess(
|
|
['./functest_{}_{}'.format(scheme_name, implementation_name)],
|
|
os.path.join('..', 'bin'),
|
|
)
|