ChangeLog

 12013-01-31 Roger Fong <roger_fong@apple.com>
 2
 3 Fix test scripts for EWS bots to get them running once and for all.
 4 https://bugs.webkit.org/show_bug.cgi?id=108422
 5
 6 Reviewed by NOBODY (OOPS!).
 7
 8 Disabling --quiet option on Windows for now because that fails when we try to use /dev/null.
 9 runtests.py was not passing in a configuration to run-webkit-tests which causes DRT to build in release by default.
 10 However, we build in Debug only on the EWS Windows bots, which caused the build to fail.
 11
 12 * Scripts/webkitpy/tool/steps/runtests.py:
 13 (RunTests.options):
 14 (RunTests.run):
 15
1162013-01-31 Rouslan Solomakhin <rouslan@chromium.org>
217
318 [Chromium] Suggest 'uppercase' for multi-word misspelling 'upper case'
141519

Scripts/webkitpy/tool/steps/runtests.py

4343 @classmethod
4444 def options(cls):
4545 return AbstractStep.options() + [
 46 Options.build_style,
4647 Options.test,
4748 Options.non_interactive,
4849 Options.quiet,

8788 "--no-new-test-results",
8889 "--no-show-results",
8990 "--exit-after-n-failures=%s" % self.NON_INTERACTIVE_FAILURE_LIMIT_COUNT,
90  "--quiet",
9191 ])
9292
 93 print self._options.build_style;
 94 if self._options.build_style == "release":
 95 args.append("--release")
 96 elif self._options.build_style == "debug":
 97 args.append("--debug")
 98
 99 # old-run-webkit-tests does not support --skip-failing-tests
 100 # Using --quiet one Windows fails when we try to use /dev/null, disabling for now until we find a fix
93101 if sys.platform != "cygwin":
94102 args.append("--skip-failing-test")
 103 args.append("--quiet")
95104
96105 if self._options.quiet:
97106 args.append("--quiet")
141468