pqc/test/test_compile_lib.py

27 lines
659 B
Python
Raw Normal View History

"""
2019-02-18 12:04:59 +00:00
Checks that the archive library can be successfully built for every
scheme/implementation.
"""
import pqclean
import helpers
2019-02-18 12:04:59 +00:00
def test_compile_lib():
for scheme in pqclean.Scheme.all_schemes():
for implementation in scheme.implementations:
yield check_compile_lib, scheme.name, implementation.name
2019-02-18 12:04:59 +00:00
def check_compile_lib(scheme_name, implementation_name):
2019-02-18 12:04:59 +00:00
implementation = pqclean.Implementation.by_name(
scheme_name, implementation_name)
helpers.run_subprocess(
['make', 'clean'],
implementation.path()
)
helpers.run_subprocess(
['make'],
implementation.path()
)