[pypy-commit] pypy s390x-backend: added skip for s390x on _vmprof tests in module

plan_rich pypy.commits at gmail.com
Tue Feb 16 05:55:15 EST 2016


Author: Richard Plangger <planrichi at gmail.com>
Branch: s390x-backend
Changeset: r82278:024d0fe16089
Date: 2016-02-16 11:53 +0100
http://bitbucket.org/pypy/pypy/changeset/024d0fe16089/

Log:	added skip for s390x on _vmprof tests in module

diff --git a/pypy/module/_vmprof/conftest.py b/pypy/module/_vmprof/conftest.py
new file mode 100644
--- /dev/null
+++ b/pypy/module/_vmprof/conftest.py
@@ -0,0 +1,6 @@
+import py, os
+
+def pytest_collect_directory(path, parent):
+    if os.uname()[4] == 's390x':
+        py.test.skip("zarch tests skipped")
+pytest_collect_file = pytest_collect_directory


More information about the pypy-commit mailing list