Changeset 194137 in webkit
- Timestamp:
- Dec 16, 2015, 1:18:00 AM (10 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r194115 r194137 1 2015-12-16 Youenn Fablet <youenn.fablet@crf.canon.fr> 2 3 Remove default copy of wpt testharness.js when launching wpt server 4 https://bugs.webkit.org/show_bug.cgi?id=152298 5 6 Reviewed by Darin Adler. 7 8 * Scripts/webkitpy/layout_tests/servers/web_platform_test_server.py: 9 (WebPlatformTestServer._copy_webkit_test_files): Deleted default copy of WebKit testharness.js to WPT. 10 1 11 2015-12-15 David Kilzer <ddkilzer@apple.com> 2 12 -
trunk/Tools/Scripts/webkitpy/layout_tests/servers/web_platform_test_server.py
r192738 r194137 102 102 wpt_testharnessjs_file = self._filesystem.join(self._doc_root, "resources", "testharness.js") 103 103 layout_tests_testharnessjs_file = self._filesystem.join(self._layout_root, "resources", "testharness.js") 104 # FIXME: Next two lines are a temp hack for this patch to land smoothly on bots. They should be removed once patch landed and each bot runs these lines once.105 if (not self._filesystem.isfile(wpt_testharnessjs_file)):106 self._filesystem.copyfile(layout_tests_testharnessjs_file, wpt_testharnessjs_file)107 104 if (not self._filesystem.compare(wpt_testharnessjs_file, layout_tests_testharnessjs_file)): 108 105 _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.