blob: dd96522ae2dfeda539de39772cea691341613b99 [file] [log] [blame]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
var result = (function(a) {
a[0] = 32;
var result;
for (var i = 0; i < 1000000; ++i)
result = String.fromCharCode(a[0]);
return result
})(new Float64Array(1));
if (result != " ")
throw "Error: bad result: " + result;