Title: [141369] trunk/Tools
Revision
141369
Author
[email protected]
Date
2013-01-30 20:42:29 -0800 (Wed, 30 Jan 2013)

Log Message

Unreviewed test failure fix for r141341.

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

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (141368 => 141369)


--- trunk/Tools/ChangeLog	2013-01-31 04:32:21 UTC (rev 141368)
+++ trunk/Tools/ChangeLog	2013-01-31 04:42:29 UTC (rev 141369)
@@ -1,3 +1,11 @@
+2013-01-30  Hajime Morrita  <[email protected]>
+
+        Unreviewed test failure fix for r141341.
+
+        * Scripts/webkitpy/tool/steps/runtests.py:
+        (RunTests.run):
+        * Scripts/webkitpy/tool/steps/runtests_unittest.py:
+
 2013-01-30  Levi Weintraub  <[email protected]>
 
         [Chromium] WebPluginContainerImpl adding imbalanced touch handler refs

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


--- trunk/Tools/Scripts/webkitpy/tool/steps/runtests.py	2013-01-31 04:32:21 UTC (rev 141368)
+++ trunk/Tools/Scripts/webkitpy/tool/steps/runtests.py	2013-01-31 04:42:29 UTC (rev 141369)
@@ -90,8 +90,9 @@
                 "--quiet",
             ])
 
-        if sys.platform != "cygwin":
-            args.append("--skip-failing-test")
+            if sys.platform != "cygwin":
+                args.append("--skip-failing-test")
+
         if self._options.quiet:
             args.append("--quiet")
 

Modified: trunk/Tools/Scripts/webkitpy/tool/steps/runtests_unittest.py (141368 => 141369)


--- trunk/Tools/Scripts/webkitpy/tool/steps/runtests_unittest.py	2013-01-31 04:32:21 UTC (rev 141368)
+++ trunk/Tools/Scripts/webkitpy/tool/steps/runtests_unittest.py	2013-01-31 04:42:29 UTC (rev 141369)
@@ -41,6 +41,6 @@
         expected_logs = """Running WebKit unit tests
 MOCK run_and_throw_if_fail: ['mock-run-webkit-unit-tests'], cwd=/mock-checkout
 Running run-webkit-tests
-MOCK run_and_throw_if_fail: ['mock-run-webkit-tests', '--no-new-test-results', '--no-show-results', '--skip-failing-tests', '--exit-after-n-failures=30', '--quiet'], cwd=/mock-checkout
+MOCK run_and_throw_if_fail: ['mock-run-webkit-tests', '--no-new-test-results', '--no-show-results', '--exit-after-n-failures=30', '--quiet', '--skip-failing-test'], cwd=/mock-checkout
 """
         OutputCapture().assert_outputs(self, step.run, [{}], expected_logs=expected_logs)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to