Title: [259372] trunk/Tools
Revision
259372
Author
jbed...@apple.com
Date
2020-04-01 17:13:11 -0700 (Wed, 01 Apr 2020)

Log Message

run-_javascript_core-tests: runJSCStressTests shouldn't exit the program
https://bugs.webkit.org/show_bug.cgi?id=209887

Reviewed by Darin Adler.

* Scripts/run-_javascript_core-tests:
(runJSCStressTests): Exit the function, not the program.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (259371 => 259372)


--- trunk/Tools/ChangeLog	2020-04-01 23:47:37 UTC (rev 259371)
+++ trunk/Tools/ChangeLog	2020-04-02 00:13:11 UTC (rev 259372)
@@ -1,3 +1,13 @@
+2020-04-01  Jonathan Bedard  <jbed...@apple.com>
+
+        run-_javascript_core-tests: runJSCStressTests shouldn't exit the program
+        https://bugs.webkit.org/show_bug.cgi?id=209887
+
+        Reviewed by Darin Adler.
+
+        * Scripts/run-_javascript_core-tests:
+        (runJSCStressTests): Exit the function, not the program.
+
 2020-04-01  Chris Dumez  <cdu...@apple.com>
 
         Regression(r257963) didFailProvisionalNavigation delegate no longer gets called when cancelling a cross-site provisional navigation

Modified: trunk/Tools/Scripts/run-_javascript_core-tests (259371 => 259372)


--- trunk/Tools/Scripts/run-_javascript_core-tests	2020-04-01 23:47:37 UTC (rev 259371)
+++ trunk/Tools/Scripts/run-_javascript_core-tests	2020-04-02 00:13:11 UTC (rev 259372)
@@ -810,7 +810,7 @@
     }
 
     if (!$hasTestsToRun) {
-        exit(0);
+        return;
     }
 
     print "Running: " . join(" ", @jscStressDriverCmd) . "\n";
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to