Title: [240844] trunk/Tools
Revision
240844
Author
[email protected]
Date
2019-02-01 06:28:57 -0800 (Fri, 01 Feb 2019)

Log Message

[WPE] Show test results in minibrowser
https://bugs.webkit.org/show_bug.cgi?id=194150

Reviewed by Žan Doberšek.

* Scripts/webkitpy/port/wpe.py:
(WPEPort.show_results_html_file):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (240843 => 240844)


--- trunk/Tools/ChangeLog	2019-02-01 14:27:35 UTC (rev 240843)
+++ trunk/Tools/ChangeLog	2019-02-01 14:28:57 UTC (rev 240844)
@@ -1,5 +1,15 @@
 2019-02-01  Carlos Garcia Campos  <[email protected]>
 
+        [WPE] Show test results in minibrowser
+        https://bugs.webkit.org/show_bug.cgi?id=194150
+
+        Reviewed by Žan Doberšek.
+
+        * Scripts/webkitpy/port/wpe.py:
+        (WPEPort.show_results_html_file):
+
+2019-02-01  Carlos Garcia Campos  <[email protected]>
+
         [WPE] MiniBrowser: add ky bindings for back/forward navigation
         https://bugs.webkit.org/show_bug.cgi?id=194151
 

Modified: trunk/Tools/Scripts/webkitpy/port/wpe.py (240843 => 240844)


--- trunk/Tools/Scripts/webkitpy/port/wpe.py	2019-02-01 14:27:35 UTC (rev 240843)
+++ trunk/Tools/Scripts/webkitpy/port/wpe.py	2019-02-01 14:28:57 UTC (rev 240844)
@@ -26,6 +26,7 @@
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
+from webkitpy.common.system import path
 from webkitpy.common.memoized import memoized
 from webkitpy.layout_tests.models.test_configuration import TestConfiguration
 from webkitpy.port.base import Port
@@ -84,6 +85,9 @@
         self._copy_value_from_environ_if_set(environment, 'GST_DEBUG_NO_COLOR')
         return environment
 
+    def show_results_html_file(self, results_filename):
+        self._run_script("run-minibrowser", [path.abspath_to_uri(self.host.platform, results_filename)])
+
     def check_sys_deps(self):
         return super(WPEPort, self).check_sys_deps() and self._driver_class().check_driver(self)
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to