Changeset 155411 in webkit
- Timestamp:
- Sep 9, 2013, 7:46:55 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 5 deleted
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r155410 r155411 1 2013-09-09 Mark Lam <mark.lam@apple.com> 2 3 Re-landing 155392 (Remove old fast/js/resources pre and post test files). 4 https://bugs.webkit.org/show_bug.cgi?id=120899. 5 6 Not reviewed. 7 8 * fast/js/resources/js-test-post-async.js: Removed. 9 * fast/js/resources/js-test-post.js: Removed. 10 * fast/js/resources/js-test-pre.js: Removed. 11 * fast/js/resources/standalone-post.js: Removed. 12 * fast/js/resources/standalone-pre.js: Removed. 13 1 14 2013-09-09 Mark Lam <mark.lam@apple.com> 2 15 -
trunk/Tools/ChangeLog
r155404 r155411 1 2013-09-09 Mark Lam <mark.lam@apple.com> 2 3 Re-landing r155392 (Point Tools scripts to LayoutTests/resources). 4 https://bugs.webkit.org/show_bug.cgi?id=120899. 5 6 Not reviewed. 7 8 The webkitpy test failure that resulted in the rollout is due to 9 update_webgl_conformance_tests_unittest.py referencing js-test-style.css 10 which is to be deleted. Deleting that line fixes the issue. 11 12 * Scripts/make-new-script-test: 13 (makePathToSharedSources): 14 * Scripts/run-fast-jsc: 15 * Scripts/webkitperl/httpd.pm: 16 (getDefaultConfigForTestDirectory): 17 * Scripts/webkitpy/layout_tests/servers/apache_http_server.py: 18 (LayoutTestApacheHttpd.__init__): 19 * Scripts/webkitpy/layout_tests/servers/http_server.py: 20 (Lighttpd.__init__): 21 * Scripts/webkitpy/layout_tests/servers/http_server_integrationtest.py: 22 (BaseTest.integration_test_port_and_root): 23 * Scripts/webkitpy/layout_tests/servers/http_server_unittest.py: 24 (TestHttpServer.test_start_cmd): 25 * Scripts/webkitpy/to_be_moved/update_webgl_conformance_tests.py: 26 (translate_includes): 27 * Scripts/webkitpy/to_be_moved/update_webgl_conformance_tests_unittest.py: 28 (TestTranslation.test_include_rewriting): 29 1 30 2013-09-09 Mark Lam <mark.lam@apple.com> 2 31 -
trunk/Tools/Scripts/make-new-script-test
r155404 r155411 81 81 return "/js-test-resources"; 82 82 } else { 83 return File::Spec->abs2rel(" fast/js/resources/", dirname($testAbsolutePath));83 return File::Spec->abs2rel("resources/", dirname($testAbsolutePath)); 84 84 } 85 85 } -
trunk/Tools/Scripts/run-fast-jsc
r155404 r155411 75 75 fi 76 76 77 preScript=$testRoot/ fast/js/resources/standalone-pre.js78 postScript=$testRoot/ fast/js/resources/standalone-post.js77 preScript=$testRoot/resources/standalone-pre.js 78 postScript=$testRoot/resources/standalone-post.js 79 79 passList=$resultsRoot/passed 80 80 failList=$resultsRoot/failed -
trunk/Tools/Scripts/webkitperl/httpd.pm
r155404 r155411 106 106 my $httpdConfig = getHTTPDConfigPathForTestDirectory($testDirectory); 107 107 my $documentRoot = "$testDirectory/http/tests"; 108 my $jsTestResourcesDirectory = $testDirectory . "/ fast/js/resources";108 my $jsTestResourcesDirectory = $testDirectory . "/resources"; 109 109 my $mediaResourcesDirectory = $testDirectory . "/media"; 110 110 my $typesConfig = "$testDirectory/http/conf/mime.types"; -
trunk/Tools/Scripts/webkitpy/layout_tests/servers/apache_http_server.py
r155404 r155411 61 61 62 62 test_dir = self._port_obj.layout_tests_dir() 63 js_test_resources_dir = self._filesystem.join(test_dir, " fast", "js", "resources")63 js_test_resources_dir = self._filesystem.join(test_dir, "resources") 64 64 media_resources_dir = self._filesystem.join(test_dir, "media") 65 65 mime_types_path = self._filesystem.join(test_dir, "http", "conf", "mime.types") -
trunk/Tools/Scripts/webkitpy/layout_tests/servers/http_server.py
r155404 r155411 66 66 67 67 self._webkit_tests = os.path.join(self._layout_tests_dir, 'http', 'tests') 68 self._js_test_resource = os.path.join(self._layout_tests_dir, ' fast', 'js', 'resources')68 self._js_test_resource = os.path.join(self._layout_tests_dir, 'resources') 69 69 self._media_resource = os.path.join(self._layout_tests_dir, 'media') 70 70 -
trunk/Tools/Scripts/webkitpy/layout_tests/servers/http_server_integrationtest.py
r155404 r155411 121 121 tmpdir = tempfile.mkdtemp(prefix='webkitpytest') 122 122 self.maybe_make_dir(tmpdir, 'http', 'tests', 'websocket') 123 self.maybe_make_dir(tmpdir, ' fast', 'js', 'resources')123 self.maybe_make_dir(tmpdir, 'resources') 124 124 self.maybe_make_dir(tmpdir, 'media') 125 125 -
trunk/Tools/Scripts/webkitpy/layout_tests/servers/http_server_unittest.py
r155404 r155411 58 58 config_file = host.filesystem.read_text_file("/mock/output_dir/lighttpd.conf") 59 59 self.assertEqual(re.findall(r"alias.url.+", config_file), [ 60 'alias.url = ( "/js-test-resources" => "/test.checkout/LayoutTests/ fast/js/resources" )',60 'alias.url = ( "/js-test-resources" => "/test.checkout/LayoutTests/resources" )', 61 61 'alias.url += ( "/mock/one-additional-dir" => "/mock-checkout/one-additional-dir" )', 62 62 'alias.url += ( "/mock/another-additional-dir" => "/mock-checkout/one-additional-dir" )', -
trunk/Tools/Scripts/webkitpy/to_be_moved/update_webgl_conformance_tests.py
r155404 r155411 45 45 include_mapping = { 46 46 "js-test-style.css": "../../js/resources", 47 "js-test-pre.js": "../../ js/resources",48 "js-test-post.js": "../../ js/resources",47 "js-test-pre.js": "../../../resources", 48 "js-test-post.js": "../../../resources", 49 49 "desktop-gl-constants.js": "resources", 50 50 } -
trunk/Tools/Scripts/webkitpy/to_be_moved/update_webgl_conformance_tests_unittest.py
r155404 r155411 68 68 # Mappings to None are unchanged 69 69 styles = { 70 "../resources/js-test-style.css": "../../js/resources/js-test-style.css",71 70 "fail.css": None, 72 71 "resources/stylesheet.css": None, … … 74 73 } 75 74 scripts = { 76 "../resources/js-test-pre.js": "../../ js/resources/js-test-pre.js",77 "../resources/js-test-post.js": "../../ js/resources/js-test-post.js",75 "../resources/js-test-pre.js": "../../../resources/js-test-pre.js", 76 "../resources/js-test-post.js": "../../../resources/js-test-post.js", 78 77 "../resources/desktop-gl-constants.js": "resources/desktop-gl-constants.js", 79 78
Note:
See TracChangeset
for help on using the changeset viewer.