1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-22 23:48:58 +00:00
pqcrypto/test/test_compile_lib.py

36 lines
808 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()
)
if __name__ == '__main__':
2019-02-18 12:51:01 +00:00
try:
import nose2
nose2.main()
except ImportError:
import nose
nose.runmodule()