pqc/test/test_compile_lib.py

27 lines
552 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, implementation
2019-02-18 12:04:59 +00:00
def check_compile_lib(implementation):
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()