Backed out changeset 4ede0210acdb (bug 1467249) for linting failures in /builds/worker/checkouts/gecko/js/src/devtools/automation/autospider.py on a CLOSED TREE

This commit is contained in:
shindli 2018-06-09 03:52:29 +03:00
parent 3392deb647
commit 0596b8022c

View File

@ -486,16 +486,6 @@ if use_minidump:
for v in ('JSTESTS_EXTRA_ARGS', 'JITTEST_EXTRA_ARGS'):
env[v] = "--args='--dll %s' %s" % (injector_lib, env.get(v, ''))
# Store all failure output to an uploaded log file. This could be done in each
# individual variant, but it's verbose and we want it across the board.
if AUTOMATION:
env['JSTESTS_EXTRA_ARGS'] = "--show-output --show-cmd --failed-only --output-file={MOZ_UPLOAD_DIR}/jstests.fail.txt {old}".format(
MOZ_UPLOAD_DIR=env.get('MOZ_UPLOAD_DIR', '/tmp'),
old = env.get('JSTESTS_EXTRA_ARGS', ''))
env['JITTEST_EXTRA_ARGS'] = "--write-failures={MOZ_UPLOAD_DIR}/jit-tests.fail.txt --write-failure-output {old}".format(
MOZ_UPLOAD_DIR=env.get('MOZ_UPLOAD_DIR', '/tmp'),
old = env.get('JITTEST_EXTRA_ARGS', ''))
# Always run all enabled tests, even if earlier ones failed. But return the
# first failed status.
results = []