Sign in
webkit
/
WebKit
/
4f432b0e0e75beec799a7711d10ed7d74a80962d
/
.
/
JSTests
/
microbenchmarks
/
array-prototype-join-uninitialized.js
blob: 29460ab829f756f808286c5b1c4d3bda51fe7bd6 [
file
] [
log
] [
blame
]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
//@ runDefault
var
N
=
10
*
1024
*
1024
var
s
=
Array
(
N
).
join
();
if
(
s
!==
","
.
repeat
(
N
-
1
))
throw
(
"Unexpected result of Array.prototype.join()"
);