Author: Antonio Cuni <[email protected]> Branch: faster-rstruct-2 Changeset: r91267:ca663c6eea4d Date: 2017-05-12 16:27 +0200 http://bitbucket.org/pypy/pypy/changeset/ca663c6eea4d/
Log: add the llop test also for ARM diff --git a/rpython/jit/backend/arm/test/test_llop.py b/rpython/jit/backend/arm/test/test_llop.py new file mode 100644 --- /dev/null +++ b/rpython/jit/backend/arm/test/test_llop.py @@ -0,0 +1,9 @@ +from rpython.jit.backend.arm.test.support import JitARMMixin +from rpython.jit.metainterp.test.test_llop import TestLLOp as _TestLLOp + + +class TestLLOp(JitARMMixin, _TestLLOp): + # for the individual tests see + # ====> ../../../metainterp/test/test_llop.py + pass + _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
