Author: David Schneider <[email protected]>
Branch: arm-backend-2
Changeset: r56385:03583cd7e51b
Date: 2012-07-22 10:47 +0200
http://bitbucket.org/pypy/pypy/changeset/03583cd7e51b/

Log:    do not skip tests on armhf

diff --git a/pypy/jit/backend/arm/test/conftest.py 
b/pypy/jit/backend/arm/test/conftest.py
--- a/pypy/jit/backend/arm/test/conftest.py
+++ b/pypy/jit/backend/arm/test/conftest.py
@@ -17,5 +17,5 @@
                     help="run tests that translate code")
 
 def pytest_runtest_setup(item):
-    if cpu != 'arm':
+    if cpu not in  ('arm', 'armhf'):
         py.test.skip("ARM(v7) tests skipped: cpu is %r" % (cpu,))
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to