Changeset 94316 in webkit


Ignore:
Timestamp:
Sep 1, 2011, 11:01:25 AM (14 years ago)
Author:
eric@webkit.org
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:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r94314 r94316  
     12011-09-01  Eric Seidel  <eric@webkit.org>
     2
     3        Unreviewed.
     4
     5        Fix a typo in unittests.  Unfortunately fixing it
     6        caused several assertions.  Just disabling the test
     7        instead, since it was providing no value before due to the typo.
     8
     9        * Scripts/webkitpy/layout_tests/port/test.py:
     10
    1112011-09-01  Adam Barth  <abarth@webkit.org>
    212
  • trunk/Tools/Scripts/webkitpy/layout_tests/port/test.py

    r91877 r94316  
    245245"""
    246246
     247    # FIXME: This test was only being ignored because of missing a leading '/'.
     248    # Fixing the typo causes several tests to assert, so disabling the test entirely.
    247249    # Add in a file should be ignored by test_files.find().
    248     files[LAYOUT_TEST_DIR + 'userscripts/resources/iframe.html'] = 'iframe'
     250    #files[LAYOUT_TEST_DIR + '/userscripts/resources/iframe.html'] = 'iframe'
    249251
    250252    fs = filesystem_mock.MockFileSystem(files, dirs=set(['/mock-checkout']))  # Make sure at least the checkout_root exists as a directory.
Note: See TracChangeset for help on using the changeset viewer.