[pypy-commit] pypy arm-backend-2: do not skip tests on armhf

bivab noreply at buildbot.pypy.org
Sun Jul 22 12:19:32 CEST 2012


Author: David Schneider <david.schneider at picle.org>
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,))


More information about the pypy-commit mailing list