pqc/test/test_compile_lib.py

29 regels
684 B
Python

"""
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:
2019-04-17 10:10:49 +01:00
if helpers.permit_test('compile_lib', implementation):
yield check_compile_lib, implementation
2019-02-18 12:04:59 +00:00
def check_compile_lib(implementation):
helpers.make('clean', working_dir=implementation.path())
helpers.make(working_dir=implementation.path())
if __name__ == '__main__':
2019-02-18 12:51:01 +00:00
try:
import nose2
nose2.main()
except ImportError:
import nose
nose.runmodule()