Title: [94316] trunk/Tools
Revision
94316
Author
[email protected]
Date
2011-09-01 11:01:25 -0700 (Thu, 01 Sep 2011)

Log Message

Unreviewed.

Fix a typo in unittests.  Unfortunately fixing it
caused several assertions.  Just disabling the test
instead, since it was providing no value before due to the typo.

* Scripts/webkitpy/layout_tests/port/test.py:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (94315 => 94316)


--- trunk/Tools/ChangeLog	2011-09-01 17:58:41 UTC (rev 94315)
+++ trunk/Tools/ChangeLog	2011-09-01 18:01:25 UTC (rev 94316)
@@ -1,3 +1,13 @@
+2011-09-01  Eric Seidel  <[email protected]>
+
+        Unreviewed.
+
+        Fix a typo in unittests.  Unfortunately fixing it
+        caused several assertions.  Just disabling the test
+        instead, since it was providing no value before due to the typo.
+
+        * Scripts/webkitpy/layout_tests/port/test.py:
+
 2011-09-01  Adam Barth  <[email protected]>
 
         Add a "rebaseline" button to the garden-o-matic summary page

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/test.py (94315 => 94316)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/test.py	2011-09-01 17:58:41 UTC (rev 94315)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/test.py	2011-09-01 18:01:25 UTC (rev 94316)
@@ -244,8 +244,10 @@
 WONTFIX SKIP : failures/expected/exception.html = CRASH
 """
 
+    # FIXME: This test was only being ignored because of missing a leading '/'.
+    # Fixing the typo causes several tests to assert, so disabling the test entirely.
     # Add in a file should be ignored by test_files.find().
-    files[LAYOUT_TEST_DIR + 'userscripts/resources/iframe.html'] = 'iframe'
+    #files[LAYOUT_TEST_DIR + '/userscripts/resources/iframe.html'] = 'iframe'
 
     fs = filesystem_mock.MockFileSystem(files, dirs=set(['/mock-checkout']))  # Make sure at least the checkout_root exists as a directory.
     fs._tests = test_list
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to