summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/harmony/sharedarraybuffer-stress.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/mjsunit/harmony/sharedarraybuffer-stress.js')
-rw-r--r--deps/v8/test/mjsunit/harmony/sharedarraybuffer-stress.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/deps/v8/test/mjsunit/harmony/sharedarraybuffer-stress.js b/deps/v8/test/mjsunit/harmony/sharedarraybuffer-stress.js
index 24724eea14..e4cdff5d36 100644
--- a/deps/v8/test/mjsunit/harmony/sharedarraybuffer-stress.js
+++ b/deps/v8/test/mjsunit/harmony/sharedarraybuffer-stress.js
@@ -9,11 +9,9 @@ function Alloc(size) {
}
function RunSomeAllocs(total, retained, size) {
- print(`-------iterations = ${total}, retained = $ { retained } -------`);
+ print(`-------iterations = ${total}, retained = ${retained} -------`);
var array = new Array(retained);
for (var i = 0; i < total; i++) {
- if ((i % 25) == 0)
- print(`iteration $ { i }`);
let pair = Alloc(size);
// For some iterations, retain the memory, view, or both.
switch (i % 3) {