Title: [129245] trunk/Tools
Revision
129245
Author
[email protected]
Date
2012-09-21 12:35:06 -0700 (Fri, 21 Sep 2012)

Log Message

Fix test_skip_and_wontfix failure
https://bugs.webkit.org/show_bug.cgi?id=97225

Unreviewed, build fix.

* Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
(SemanticTests.test_skip_and_wontfix):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (129244 => 129245)


--- trunk/Tools/ChangeLog	2012-09-21 19:24:04 UTC (rev 129244)
+++ trunk/Tools/ChangeLog	2012-09-21 19:35:06 UTC (rev 129245)
@@ -1,3 +1,13 @@
+2012-09-21  Dirk Pranke  <[email protected]>
+
+        Fix test_skip_and_wontfix failure
+        https://bugs.webkit.org/show_bug.cgi?id=97225
+
+        Unreviewed, build fix.
+
+        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
+        (SemanticTests.test_skip_and_wontfix):
+
 2012-09-21  Carlos Garcia Campos  <[email protected]>
 
         [GTK] Implement ViewState methods in PageClientImpl in WebKit2

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py (129244 => 129245)


--- trunk/Tools/Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py	2012-09-21 19:24:04 UTC (rev 129244)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py	2012-09-21 19:35:06 UTC (rev 129245)
@@ -472,9 +472,8 @@
         self.parse_exp('failures/expected/text.html [ Crash WontFix ]')
         self.assertTrue(self._exp.has_warnings())
 
-        # We can't warn against [ Pass WontFix ] until we get rid of the old syntax.
-        # self.parse_exp('failures/expected/text.html [ Pass WontFix ]')
-        # self.assertFalse(self._exp.has_warnings())
+        self.parse_exp('failures/expected/text.html [ Pass WontFix ]')
+        self.assertTrue(self._exp.has_warnings())
 
     def test_slow_and_timeout(self):
         # A test cannot be SLOW and expected to TIMEOUT.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to