summaryrefslogtreecommitdiff
path: root/testing/cffi0/test_vgen.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/cffi0/test_vgen.py')
-rw-r--r--testing/cffi0/test_vgen.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/testing/cffi0/test_vgen.py b/testing/cffi0/test_vgen.py
new file mode 100644
index 0000000..1a7e05d
--- /dev/null
+++ b/testing/cffi0/test_vgen.py
@@ -0,0 +1,12 @@
+import cffi.verifier
+from .test_verify import *
+
+
+def setup_module():
+ cffi.verifier.cleanup_tmpdir()
+ cffi.verifier._FORCE_GENERIC_ENGINE = True
+ # Runs all tests with _FORCE_GENERIC_ENGINE = True, to make sure we
+ # also test vengine_gen.py.
+
+def teardown_module():
+ cffi.verifier._FORCE_GENERIC_ENGINE = False