Title: [252773] trunk/Tools
Revision
252773
Author
[email protected]
Date
2019-11-22 06:55:03 -0800 (Fri, 22 Nov 2019)

Log Message

Support JSCOnly platform in test reporting
https://bugs.webkit.org/show_bug.cgi?id=204495

Patch by Paulo Matos <[email protected]> on 2019-11-22
Reviewed by Carlos Garcia Campos.

Add JSCOnly to possible platforms.

* Scripts/run-_javascript_core-tests:
(configurationForUpload):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (252772 => 252773)


--- trunk/Tools/ChangeLog	2019-11-22 14:51:25 UTC (rev 252772)
+++ trunk/Tools/ChangeLog	2019-11-22 14:55:03 UTC (rev 252773)
@@ -1,3 +1,15 @@
+2019-11-22  Paulo Matos  <[email protected]>
+
+        Support JSCOnly platform in test reporting
+        https://bugs.webkit.org/show_bug.cgi?id=204495
+
+        Reviewed by Carlos Garcia Campos.
+
+        Add JSCOnly to possible platforms.
+
+        * Scripts/run-_javascript_core-tests:
+        (configurationForUpload):
+
 2019-11-22  Carlos Garcia Campos  <[email protected]>
 
         [GTK][WPE] RemoteInspector: use sockets instead of DBus

Modified: trunk/Tools/Scripts/run-_javascript_core-tests (252772 => 252773)


--- trunk/Tools/Scripts/run-_javascript_core-tests	2019-11-22 14:51:25 UTC (rev 252772)
+++ trunk/Tools/Scripts/run-_javascript_core-tests	2019-11-22 14:55:03 UTC (rev 252773)
@@ -389,6 +389,12 @@
             chomp($version = `uname -r`);
             $version = splitVersionString($version);
         }
+    } elsif (isJSCOnly()) {
+        $platform = 'jsc-only';
+        if (!$version) {
+            chomp($version = `uname -r`);
+            $version = splitVersionString($version);
+        }
     } elsif (isAnyWindows()) {
         $platform = 'win';
         if (!$version) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to