Title: [279394] trunk/Tools
Revision
279394
Author
[email protected]
Date
2021-06-29 16:49:28 -0700 (Tue, 29 Jun 2021)

Log Message

Add new argument of device os version for reporting _javascript_Core test result
https://bugs.webkit.org/show_bug.cgi?id=227363

Reviewed by Dewei Zhu.

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

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (279393 => 279394)


--- trunk/Tools/ChangeLog	2021-06-29 23:48:45 UTC (rev 279393)
+++ trunk/Tools/ChangeLog	2021-06-29 23:49:28 UTC (rev 279394)
@@ -1,3 +1,13 @@
+2021-06-29  Zhifei Fang  <[email protected]>
+
+        Add new argument of device os version for reporting _javascript_Core test result
+        https://bugs.webkit.org/show_bug.cgi?id=227363
+
+        Reviewed by Dewei Zhu.
+
+        * Scripts/run-_javascript_core-tests:
+        (configurationForUpload):
+
 2021-06-29  Jonathan Bedard  <[email protected]>
 
         [webkitcorepy] Add NestedFuzzyDict

Modified: trunk/Tools/Scripts/run-_javascript_core-tests (279393 => 279394)


--- trunk/Tools/Scripts/run-_javascript_core-tests	2021-06-29 23:48:45 UTC (rev 279393)
+++ trunk/Tools/Scripts/run-_javascript_core-tests	2021-06-29 23:49:28 UTC (rev 279394)
@@ -111,6 +111,7 @@
 my $version;
 my $versionName;
 my $sdk;
+my $deviceOS;
 my $failFast = 1;
 my $coverage = 0;
 my $coverageDir;
@@ -266,6 +267,7 @@
   --version                     Specify the version number of the device running tests.
   --version-name                Specify the version name of the hardware running tests.
   --sdk                         Specific SDK or OS version of the form ##*###
+  --device-os                   Speicifc OS version for the remote device
   --extra-tests=                Path to a file containing extra tests
   --child-processes=            Specify the number of child processes.
   --shell-runner                Uses the shell-based test runner instead of the default make-based runner.
@@ -340,6 +342,7 @@
     'version=s' => \$version,
     'version-name=s' => \$versionName,
     'sdk=s' => \$sdk,
+    'device-os=s' => \$deviceOS,
     'remote-config-file=s' => \$remoteConfigFile,
     'child-processes=s' => \$childProcesses,
     'shell-runner' => \$shellRunner,
@@ -473,6 +476,9 @@
     if ($sdk) {
         $result->{sdk} = $sdk;
     }
+    if ($deviceOS) {
+        $result->{sdk} = $deviceOS;
+    }
     return $result;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to