Author: Armin Rigo <[email protected]>
Branch: optimize-cond-call
Changeset: r79443:9c0990386229
Date: 2015-09-04 19:43 +0200
http://bitbucket.org/pypy/pypy/changeset/9c0990386229/
Log: Unsure if someone still uses --run-translation-tests and would
explode if this option was not recognized any more. But it is
ignored anyway.
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
@@ -9,12 +9,14 @@
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="run tests that translate code")
+ help="THIS OPTION IS IGNORED, USE ``--slow''")
def pytest_collect_directory(path, parent):
if not cpu.startswith('arm'):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit