Title: [142180] trunk/Tools
Revision
142180
Author
[email protected]
Date
2013-02-07 14:33:21 -0800 (Thu, 07 Feb 2013)

Log Message

Temporary fix for Win EWS bots.
Don't build DRT since it has already been built in the build step.

* Scripts/webkitpy/tool/steps/runtests.py:
(RunTests.run):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (142179 => 142180)


--- trunk/Tools/ChangeLog	2013-02-07 22:08:08 UTC (rev 142179)
+++ trunk/Tools/ChangeLog	2013-02-07 22:33:21 UTC (rev 142180)
@@ -1,3 +1,11 @@
+2013-02-07  Roger Fong  <[email protected]>
+
+        Temporary fix for Win EWS bots.
+        Don't build DRT since it has already been built in the build step.
+
+        * Scripts/webkitpy/tool/steps/runtests.py:
+        (RunTests.run):
+
 2013-02-07  Martin Robinson  <[email protected]>
 
         [GTK] Cleanup command-line defines

Modified: trunk/Tools/Scripts/webkitpy/tool/steps/runtests.py (142179 => 142180)


--- trunk/Tools/Scripts/webkitpy/tool/steps/runtests.py	2013-02-07 22:08:08 UTC (rev 142179)
+++ trunk/Tools/Scripts/webkitpy/tool/steps/runtests.py	2013-02-07 22:33:21 UTC (rev 142180)
@@ -90,21 +90,21 @@
                 "--exit-after-n-failures=%s" % self.NON_INTERACTIVE_FAILURE_LIMIT_COUNT,
             ])
 
-            try:
-                print "BUILD CONFIGURATION";
-                print self._options.build_style;
-                if self._options.build_style == "release":
-                    args.append("--release")
-                elif self._options.build_style == "debug":
-                    args.append("--debug")
-            except:
-                pass
+            #try:
+            #    if self._options.build_style == "release":
+            #        args.append("--release")
+            #    elif self._options.build_style == "debug":
+            #        args.append("--debug")
+            #except:
+            #    pass
 
             # old-run-webkit-tests does not support --skip-failing-tests
             # Using --quiet one Windows fails when we try to use /dev/null, disabling for now until we find a fix
             if sys.platform != "cygwin":
                 args.append("--quiet")
                 args.append("--skip-failing-tests")
+            else
+                args.append("--no-build");
 
         if self._options.quiet:
             args.append("--quiet")
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to