Author: Richard Plangger <[email protected]>
Branch: 
Changeset: r88114:3beef9de1045
Date: 2016-11-03 11:54 +0100
http://bitbucket.org/pypy/pypy/changeset/3beef9de1045/

Log:    skip tests on non x86 cpus (vmprof is not implemented there)

diff --git a/rpython/rlib/rvmprof/test/__init__.py 
b/rpython/rlib/rvmprof/test/__init__.py
--- a/rpython/rlib/rvmprof/test/__init__.py
+++ b/rpython/rlib/rvmprof/test/__init__.py
@@ -0,0 +1,5 @@
+import pytest
+import platform
+
+if not platform.machine().startswith('x86'):
+    pytest.skip()
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to