Title: [262859] trunk/Tools
Revision
262859
Author
keith_mil...@apple.com
Date
2020-06-10 14:17:09 -0700 (Wed, 10 Jun 2020)

Log Message

run-jsc-stress-tests should skip tests marked as slow in quick mode.
https://bugs.webkit.org/show_bug.cgi?id=213042

Reviewed by Yusuke Suzuki.

* Scripts/run-jsc-stress-tests:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (262858 => 262859)


--- trunk/Tools/ChangeLog	2020-06-10 20:49:59 UTC (rev 262858)
+++ trunk/Tools/ChangeLog	2020-06-10 21:17:09 UTC (rev 262859)
@@ -1,3 +1,12 @@
+2020-06-10  Keith Miller  <keith_mil...@apple.com>
+
+        run-jsc-stress-tests should skip tests marked as slow in quick mode.
+        https://bugs.webkit.org/show_bug.cgi?id=213042
+
+        Reviewed by Yusuke Suzuki.
+
+        * Scripts/run-jsc-stress-tests:
+
 2020-06-10  Antoine Quint  <grao...@webkit.org>
 
         Subframes should not autosize independently

Modified: trunk/Tools/Scripts/run-jsc-stress-tests (262858 => 262859)


--- trunk/Tools/Scripts/run-jsc-stress-tests	2020-06-10 20:49:59 UTC (rev 262858)
+++ trunk/Tools/Scripts/run-jsc-stress-tests	2020-06-10 21:17:09 UTC (rev 262859)
@@ -675,6 +675,7 @@
 
 def slow!
     $runCommandOptions[:isSlow] = true
+    skip() if ($mode == "quick")
 end
 
 def crash!
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to