1import cffi.verifier 2from .test_vgen import * 3 4# This test file runs normally after test_vgen. We only clean up the .c 5# sources, to check that it also works when we have only the .so. The 6# tests should run much faster than test_vgen. 7 8def setup_module(): 9 cffi.verifier.cleanup_tmpdir(keep_so=True) 10 cffi.verifier._FORCE_GENERIC_ENGINE = True 11 12def teardown_module(): 13 cffi.verifier._FORCE_GENERIC_ENGINE = False 14