Title: [279013] trunk/JSTests
Revision
279013
Author
[email protected]
Date
2021-06-17 15:12:53 -0700 (Thu, 17 Jun 2021)

Log Message

Make microbenchmarks/delete-property-from-prototype-chain not time out on debug builds
https://bugs.webkit.org/show_bug.cgi?id=227148

Reviewed by Mark Lam.

* microbenchmarks/delete-property-from-prototype-chain.js:

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (279012 => 279013)


--- trunk/JSTests/ChangeLog	2021-06-17 22:03:03 UTC (rev 279012)
+++ trunk/JSTests/ChangeLog	2021-06-17 22:12:53 UTC (rev 279013)
@@ -1,3 +1,12 @@
+2021-06-17  Saam Barati  <[email protected]>
+
+        Make microbenchmarks/delete-property-from-prototype-chain not time out on debug builds
+        https://bugs.webkit.org/show_bug.cgi?id=227148
+
+        Reviewed by Mark Lam.
+
+        * microbenchmarks/delete-property-from-prototype-chain.js:
+
 2021-06-16  Tadeu Zagallo  <[email protected]>
 
         AssemblyHelpers should save/restore callee save FPRs

Modified: trunk/JSTests/microbenchmarks/delete-property-from-prototype-chain.js (279012 => 279013)


--- trunk/JSTests/microbenchmarks/delete-property-from-prototype-chain.js	2021-06-17 22:03:03 UTC (rev 279012)
+++ trunk/JSTests/microbenchmarks/delete-property-from-prototype-chain.js	2021-06-17 22:12:53 UTC (rev 279013)
@@ -36,7 +36,7 @@
 
 delete C.prototype.z
 
-for (let i = 0; i < 2000000; ++i) {
+for (let i = 0; i < 20000; ++i) {
     getZ({z: i})
     doTest(undefined)
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to