Index: test/mjsunit/harmony/futex.js |
diff --git a/test/mjsunit/harmony/futex.js b/test/mjsunit/harmony/futex.js |
index 13a6995c2ad02015633865635b22f5a2790de11f..ea71be99fb68dcc05ee6af92e805cc7c8d4a6035 100644 |
--- a/test/mjsunit/harmony/futex.js |
+++ b/test/mjsunit/harmony/futex.js |
@@ -104,6 +104,11 @@ |
%SetAllowAtomicsWait(true); |
})(); |
+(function TestWakePositiveInfinity() { |
+ var i32a = new Int32Array(new SharedArrayBuffer(16)); |
+ Atomics.wake(i32a, 0, Number.POSITIVE_INFINITY); |
+})(); |
+ |
//// WORKER ONLY TESTS |
if (this.Worker) { |