Author: Armin Rigo <ar...@tunes.org>
Branch: optimize-cond-call
Changeset: r79445:242b99309986
Date: 2015-09-04 19:52 +0200
http://bitbucket.org/pypy/pypy/changeset/242b99309986/

Log:    Kill option

diff --git a/rpython/jit/backend/arm/test/conftest.py 
b/rpython/jit/backend/arm/test/conftest.py
--- a/rpython/jit/backend/arm/test/conftest.py
+++ b/rpython/jit/backend/arm/test/conftest.py
@@ -1,23 +1,12 @@
 """
-This conftest adds an option to run the translation tests which by default will
-be disabled.
-Also it disables the backend tests on non ARMv7 platforms
+This disables the backend tests on non ARMv7 platforms.
+Note that you need "--slow" to run translation tests.
 """
 import py, os
 from rpython.jit.backend import detect_cpu
 
 cpu = detect_cpu.autodetect()
 
-def pytest_addoption(parser):
-    # XXX nowadays, use the command line argument "--slow"
-
-    group = parser.getgroup('translation test options')
-    group.addoption('--run-translation-tests',
-                    action="store_true",
-                    default=False,
-                    dest="run_translation_tests",
-                    help="THIS OPTION IS IGNORED, USE ``--slow''")
-
 def pytest_collect_directory(path, parent):
     if not cpu.startswith('arm'):
         py.test.skip("ARM(v7) tests skipped: cpu is %r" % (cpu,))
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to