diff options
-rwxr-xr-x | tools/heapcheck/chrome_tests.py | 1 | ||||
-rwxr-xr-x | tools/valgrind/chrome_tests.py | 7 |
2 files changed, 0 insertions, 8 deletions
diff --git a/tools/heapcheck/chrome_tests.py b/tools/heapcheck/chrome_tests.py index cfc662a..895ed62 100755 --- a/tools/heapcheck/chrome_tests.py +++ b/tools/heapcheck/chrome_tests.py @@ -470,7 +470,6 @@ def main(): return 1 parser = optparse.OptionParser("usage: %prog -b <dir> -t <test> " "[-t <test> ...]") - parser.disable_interspersed_args() parser.add_option("-b", "--build-dir", # TODO(thakis): Remove --build_dir once bots don't pass it. "--build_dir", diff --git a/tools/valgrind/chrome_tests.py b/tools/valgrind/chrome_tests.py index d361b7c..f89e199 100755 --- a/tools/valgrind/chrome_tests.py +++ b/tools/valgrind/chrome_tests.py @@ -566,7 +566,6 @@ class ChromeTests: def _main(): parser = optparse.OptionParser("usage: %prog -b <dir> -t <test> " "[-t <test> ...]") - parser.disable_interspersed_args() parser.add_option("--help-tests", dest="help_tests", action="store_true", default=False, help="List all available tests") @@ -603,12 +602,6 @@ def _main(): options, args = parser.parse_args() - if not options.build_dir and not options.target: - # Currently happens on Windows, not sure why. TODO(thakis): Figure out and - # remove within 24h. - options.build_dir = 'src/out' - options.target = 'Debug' - # target used to be a part of build_dir, so only add it if it's not there. # TODO(thakis): Always do this once the memory master no longer passes # the target as part of build_dir. |