Title: [285657] trunk/Source/_javascript_Core
Revision
285657
Author
[email protected]
Date
2021-11-11 14:00:27 -0800 (Thu, 11 Nov 2021)

Log Message

Disable JIT runs of the ExecutionTimeLimitTest when !ENABLE(JIT).
https://bugs.webkit.org/show_bug.cgi?id=233003

Reviewed by Yusuke Suzuki.

* API/tests/ExecutionTimeLimitTest.cpp:
(testExecutionTimeLimit):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/API/tests/ExecutionTimeLimitTest.cpp (285656 => 285657)


--- trunk/Source/_javascript_Core/API/tests/ExecutionTimeLimitTest.cpp	2021-11-11 21:52:35 UTC (rev 285656)
+++ trunk/Source/_javascript_Core/API/tests/ExecutionTimeLimitTest.cpp	2021-11-11 22:00:27 UTC (rev 285657)
@@ -118,11 +118,13 @@
 {
     static const TierOptions tierOptionsList[] = {
         { "LLINT",    0_ms,   "--useConcurrentJIT=false --useLLInt=true --useJIT=false" },
+#if ENABLE(JIT)
         { "Baseline", 0_ms,   "--useConcurrentJIT=false --useLLInt=true --useJIT=true --useDFGJIT=false" },
         { "DFG",      200_ms,   "--useConcurrentJIT=false --useLLInt=true --useJIT=true --useDFGJIT=true --useFTLJIT=false" },
 #if ENABLE(FTL_JIT)
         { "FTL",      500_ms, "--useConcurrentJIT=false --useLLInt=true --useJIT=true --useDFGJIT=true --useFTLJIT=true" },
 #endif
+#endif // ENABLE(JIT)
     };
     
     bool failed = false;

Modified: trunk/Source/_javascript_Core/ChangeLog (285656 => 285657)


--- trunk/Source/_javascript_Core/ChangeLog	2021-11-11 21:52:35 UTC (rev 285656)
+++ trunk/Source/_javascript_Core/ChangeLog	2021-11-11 22:00:27 UTC (rev 285657)
@@ -1,3 +1,13 @@
+2021-11-11  Mark Lam  <[email protected]>
+
+        Disable JIT runs of the ExecutionTimeLimitTest when !ENABLE(JIT).
+        https://bugs.webkit.org/show_bug.cgi?id=233003
+
+        Reviewed by Yusuke Suzuki.
+
+        * API/tests/ExecutionTimeLimitTest.cpp:
+        (testExecutionTimeLimit):
+
 2021-11-11  Adrian Perez de Castro  <[email protected]>
 
         Non-unified build fixes, early November 2021 edition, bis
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to