blob: 5e00622859f189fe00acdafed67a3b2847795ea0 [file] [log] [blame]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
function test(value)
{
return +value;
}
var result = 0;
for (var i = 0; i < 1e4; ++i)
result = test(i.toString());
if (result !== 9999)
throw new Error(`bad result ${result}`);