Follow-up to bug 957729: add the --slowscript option to MochitestOptions to unbreak running mochitests through make; irc-r=froydnj

This commit is contained in:
Ehsan Akhgari 2014-02-12 10:54:11 -05:00
parent 9478077497
commit 82518e83b8

View File

@ -383,6 +383,14 @@ class MochitestOptions(optparse.OptionParser):
"help": "Produce a DMD dump after each test in the directory specified "
"by --dump-output-directory."
}],
[["--slowscript"],
{ "action": "store_true",
"default": False,
"dest": "slowscript",
"help": "Do not set the JS_DISABLE_SLOW_SCRIPT_SIGNALS env variable; "
"when not set, recoverable but misleading SIGSEGV instances "
"may occur in Ion/Odin JIT code."
}],
]
def __init__(self, **kwargs):