2019-02-14 03:31:37 +00:00
|
|
|
"""
|
2019-02-18 12:04:59 +00:00
|
|
|
Checks that the archive library can be successfully built for every
|
|
|
|
scheme/implementation.
|
2019-02-14 03:31:37 +00:00
|
|
|
"""
|
|
|
|
|
2019-02-14 03:25:34 +00:00
|
|
|
import pqclean
|
|
|
|
import helpers
|
|
|
|
|
2019-02-18 12:04:59 +00:00
|
|
|
|
2019-02-14 03:25:34 +00:00
|
|
|
def test_compile_lib():
|
|
|
|
for scheme in pqclean.Scheme.all_schemes():
|
|
|
|
for implementation in scheme.implementations:
|
2019-04-18 09:00:08 +01:00
|
|
|
yield check_compile_lib, implementation
|
2019-02-14 03:25:34 +00:00
|
|
|
|
2019-02-18 12:04:59 +00:00
|
|
|
|
2019-04-18 09:00:08 +01:00
|
|
|
@helpers.filtered_test
|
2019-03-01 12:18:41 +00:00
|
|
|
def check_compile_lib(implementation):
|
2019-04-01 03:00:39 +01:00
|
|
|
helpers.make('clean', working_dir=implementation.path())
|
2019-03-01 12:18:41 +00:00
|
|
|
helpers.make(working_dir=implementation.path())
|
2019-02-18 12:39:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2019-02-18 12:51:01 +00:00
|
|
|
try:
|
|
|
|
import nose2
|
|
|
|
nose2.main()
|
|
|
|
except ImportError:
|
|
|
|
import nose
|
|
|
|
nose.runmodule()
|