Title: [279909] trunk/JSTests
Revision
279909
Author
[email protected]
Date
2021-07-14 08:00:39 -0700 (Wed, 14 Jul 2021)

Log Message

Fix more tests around fuzzing executable allocations
https://bugs.webkit.org/show_bug.cgi?id=226663

Reviewed by Mark Lam.

* stress/bit-op-with-object-returning-int32.js:
(numberOfDFGCompiles): Deleted.
* stress/bitwise-not-fixup-rules.js:
(jscOptions):
(numberOfDFGCompiles): Deleted.

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (279908 => 279909)


--- trunk/JSTests/ChangeLog	2021-07-14 11:55:18 UTC (rev 279908)
+++ trunk/JSTests/ChangeLog	2021-07-14 15:00:39 UTC (rev 279909)
@@ -1,3 +1,16 @@
+2021-07-14  Keith Miller  <[email protected]>
+
+        Fix more tests around fuzzing executable allocations
+        https://bugs.webkit.org/show_bug.cgi?id=226663
+
+        Reviewed by Mark Lam.
+
+        * stress/bit-op-with-object-returning-int32.js:
+        (numberOfDFGCompiles): Deleted.
+        * stress/bitwise-not-fixup-rules.js:
+        (jscOptions):
+        (numberOfDFGCompiles): Deleted.
+
 2021-07-12  Saam Barati  <[email protected]>
 
         Run some tests for fewer iterations to prevent test timeouts

Modified: trunk/JSTests/stress/bit-op-with-object-returning-int32.js (279908 => 279909)


--- trunk/JSTests/stress/bit-op-with-object-returning-int32.js	2021-07-14 11:55:18 UTC (rev 279908)
+++ trunk/JSTests/stress/bit-op-with-object-returning-int32.js	2021-07-14 15:00:39 UTC (rev 279909)
@@ -9,8 +9,7 @@
 }
 noInline(bitAnd);
 
-// This can fail if we are fuzzing executable allocation .
-if (numberOfDFGCompiles(bitAnd) === 0) {
+if (jscOptions().useExecutableAllocationFuzz !== true) {
 
     var o = { valueOf: () => 0b1101 };
 

Modified: trunk/JSTests/stress/bitwise-not-fixup-rules.js (279908 => 279909)


--- trunk/JSTests/stress/bitwise-not-fixup-rules.js	2021-07-14 11:55:18 UTC (rev 279908)
+++ trunk/JSTests/stress/bitwise-not-fixup-rules.js	2021-07-14 15:00:39 UTC (rev 279909)
@@ -10,8 +10,7 @@
 }
 noInline(foo);
 
-// This can fail when we are fuzzing executable allocation.
-if (!numberOfDFGCompiles(foo)) {
+if (jscOptions().useExecutableAllocationFuzz !== true) {
     let c = 0;
     let o = {
         valueOf: () => {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to