Bug 957768 - Backout no longer needed --hide-subtests mochitest option (bug 937181 implemented the same thing but better), r=jmaher

This commit is contained in:
Andrew Halberstadt
2014-05-09 14:59:18 -04:00
parent 5813e4a887
commit c5f99a89f1
4 changed files with 11 additions and 57 deletions

View File

@@ -476,10 +476,6 @@ def MochitestCommand(func):
help='If running tests by chunks, the number of the chunk to run.')
func = this_chunk(func)
hide_subtests = CommandArgument('--hide-subtests', action='store_true',
help='If specified, will only log subtest results on failure or timeout.')
func = hide_subtests(func)
debug_on_failure = CommandArgument('--debug-on-failure', action='store_true',
help='Breaks execution and enters the JS debugger on a test failure. ' \
'Should be used together with --jsdebugger.')
@@ -586,10 +582,6 @@ def B2GCommand(func):
help='If running tests by chunks, the number of the chunk to run.')
func = this_chunk(func)
hide_subtests = CommandArgument('--hide-subtests', action='store_true',
help='If specified, will only log subtest results on failure or timeout.')
func = hide_subtests(func)
path = CommandArgument('test_paths', default=None, nargs='*',
metavar='TEST',
help='Test to run. Can be specified as a single file, a ' \