blob: 8c5529d018be9da19668f53eb726b59d91c7eff8 [file] [log] [blame] [edit]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
function shouldBe(actual, expected) {
if (actual !== expected)
throw new Error('bad value: ' + actual);
}
function test(str, count) {
return str.repeat(count);
}
for (var i = 0; i < testLoopCount; ++i) {
shouldBe(test("a", i).length, i);
}