Changeset 170426 in webkit
- Timestamp:
- Jun 25, 2014, 5:25:20 AM (12 years ago)
- Location:
- trunk/Tools
- Files:
-
- 6 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/run-launcher (modified) (1 diff)
-
Scripts/webkitdirs.pm (modified) (1 diff)
-
Scripts/webkitpy/layout_tests/run_webkit_tests.py (modified) (1 diff)
-
Scripts/webkitpy/performance_tests/perftestsrunner.py (modified) (1 diff)
-
Scripts/webkitpy/port/efl.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r170425 r170426 1 2014-06-25 Michał Pakuła vel Rutka <m.pakula@samsung.com> 2 3 [EFL] Remove WebKit1 related code from scripts 4 https://bugs.webkit.org/show_bug.cgi?id=134195 5 6 Reviewed by Laszlo Gombos. 7 8 After removing WebKit1 from EFL port, still there is some code left related to DumpRenderTree, 9 EWebLauncher. Also running layout tests does not require adding -2/--webkit-test-runner switch. 10 11 * Scripts/run-launcher: MiniBrowser now runs as default without -2 switch. 12 * Scripts/webkitdirs.pm: 13 (builtDylibPathForName): Remove reference to libewebkit.so 14 * Scripts/webkitpy/layout_tests/run_webkit_tests.py: 15 (_set_up_derived_options): Script runs WKTR by default. 16 * Scripts/webkitpy/performance_tests/perftestsrunner.py: 17 (PerfTestsRunner.__init__): Ditto. 18 * Scripts/webkitpy/port/efl.py: 19 (EflPort._search_paths): Remove efl-wk2 from baseline search path. 20 (EflPort.show_results_html_file): Run MiniBrowser as result viewer. 21 1 22 2014-06-25 Laszlo Gombos <l.gombos@samsung.com> 2 23 -
trunk/Tools/Scripts/run-launcher
r167081 r170426 46 46 47 47 # Set paths according to the build system used 48 if (isGtk() ) {48 if (isGtk() || isEfl()) { 49 49 $launcherPath = catdir($productDir, "bin", "MiniBrowser"); 50 } elsif (isEfl()) {51 if (isWK2()) {52 $launcherPath = catdir($productDir, "bin", "MiniBrowser");53 } else {54 $launcherPath = catdir($productDir, "bin", "EWebLauncher");55 }56 50 } 57 51 -
trunk/Tools/Scripts/webkitdirs.pm
r170189 r170426 830 830 } 831 831 if (isEfl()) { 832 if (isWK2()) { 833 return "$configurationProductDir/lib/libewebkit2.so"; 834 } 835 return "$configurationProductDir/lib/libewebkit.so"; 832 return "$configurationProductDir/lib/libewebkit2.so"; 836 833 } 837 834 if (isWinCE()) { -
trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
r167426 r170426 383 383 options.verbose = True 384 384 385 # The GTK+ port only support WebKit2 so it always usesWKTR.386 if options.platform == "gtk" :385 # The GTK+ and EFL ports only support WebKit2 so they always use WKTR. 386 if options.platform == "gtk" or options.platform == "efl": 387 387 options.webkit_test_runner = True 388 388 -
trunk/Tools/Scripts/webkitpy/performance_tests/perftestsrunner.py
r169893 r170426 67 67 self._port = self._host.port_factory.get(self._options.platform, self._options) 68 68 69 # The GTK+ port only supports WebKit2, so it always usesWKTR.70 if self._port.name().startswith("gtk") :69 # The GTK+ and EFL ports only supports WebKit2, so they always use WKTR. 70 if self._port.name().startswith("gtk") or self._port.name().startswith("efl"): 71 71 self._options.webkit_test_runner = True 72 72 -
trunk/Tools/Scripts/webkitpy/port/efl.py
r168833 r170426 111 111 def _search_paths(self): 112 112 search_paths = [] 113 if self.get_option('webkit_test_runner'): 114 search_paths.append(self.port_name + '-wk2') 115 search_paths.append('wk2') 116 else: 117 search_paths.append(self.port_name + '-wk1') 113 search_paths.append('wk2') 118 114 search_paths.append(self.port_name) 119 115 return search_paths … … 130 126 # or teach run-launcher how to call run-safari and move this down to WebKitPort. 131 127 run_launcher_args = ["file://%s" % results_filename] 132 if self.get_option('webkit_test_runner'):133 run_launcher_args.append('-2')134 128 # FIXME: old-run-webkit-tests also added ["-graphicssystem", "raster", "-style", "windows"] 135 129 # FIXME: old-run-webkit-tests converted results_filename path for cygwin.
Note:
See TracChangeset
for help on using the changeset viewer.