Changeset 194146 in webkit


Ignore:
Timestamp:
Dec 16, 2015 9:34:34 AM (8 years ago)
Author:
youenn.fablet@crf.canon.fr
Message:

Enforce temporarily bots to sync WebKit and WPT testharness.js
https://bugs.webkit.org/show_bug.cgi?id=152334

Reviewed by Darin Adler.

  • Scripts/webkitpy/layout_tests/servers/web_platform_test_server.py:

(WebPlatformTestServer._copy_webkit_test_files): Temporarily overwrite wpt testharness.js with WebKit testharness.js.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r194140 r194146  
     12015-12-16  Youenn Fablet  <youenn.fablet@crf.canon.fr>
     2
     3        Enforce temporarily bots to sync WebKit and WPT testharness.js
     4        https://bugs.webkit.org/show_bug.cgi?id=152334
     5
     6        Reviewed by Darin Adler.
     7
     8        * Scripts/webkitpy/layout_tests/servers/web_platform_test_server.py:
     9        (WebPlatformTestServer._copy_webkit_test_files): Temporarily overwrite wpt testharness.js with WebKit testharness.js.
     10
    1112015-12-16  Youenn Fablet  <youenn.fablet@crf.canon.fr>
    212
  • trunk/Tools/Scripts/webkitpy/layout_tests/servers/web_platform_test_server.py

    r194137 r194146  
    102102        wpt_testharnessjs_file = self._filesystem.join(self._doc_root, "resources", "testharness.js")
    103103        layout_tests_testharnessjs_file = self._filesystem.join(self._layout_root, "resources", "testharness.js")
     104        # FIXME: Next line to be removed once all bots have wpt_testharnessjs_file updated correctly. See https://bugs.webkit.org/show_bug.cgi?id=152257.
     105        self._filesystem.copyfile(layout_tests_testharnessjs_file, wpt_testharnessjs_file)
    104106        if (not self._filesystem.compare(wpt_testharnessjs_file, layout_tests_testharnessjs_file)):
    105107            _log.warning("\n//////////\nWPT tests are not using the same testharness.js file as other WebKit Layout tests.\nWebKit testharness.js might need to be updated according WPT testharness.js.\n//////////\n")
Note: See TracChangeset for help on using the changeset viewer.