Author: Richard Plangger <[email protected]>
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
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to