[pypy-commit] pypy default: Workaround: don't accept "--no-jit" as the useless option "--no-jittest"

arigo noreply at buildbot.pypy.org
Sun Jul 26 16:32:14 CEST 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r78669:e6a046f8d969
Date: 2015-07-26 15:34 +0100
http://bitbucket.org/pypy/pypy/changeset/e6a046f8d969/

Log:	Workaround: don't accept "--no-jit" as the useless option "--no-
	jittest"

diff --git a/rpython/translator/goal/translate.py b/rpython/translator/goal/translate.py
--- a/rpython/translator/goal/translate.py
+++ b/rpython/translator/goal/translate.py
@@ -24,7 +24,7 @@
     ("annotate", "do type inference", "-a --annotate", ""),
     ("rtype", "do rtyping", "-t --rtype", ""),
     ("pyjitpl", "JIT generation step", "--pyjitpl", ""),
-    ("jittest", "JIT test with llgraph backend", "--jittest", ""),
+    ("jittest", "JIT test with llgraph backend", "--pyjittest", ""),
     ("backendopt", "do backend optimizations", "--backendopt", ""),
     ("source", "create source", "-s --source", ""),
     ("compile", "compile", "-c --compile", " (default goal)"),


More information about the pypy-commit mailing list