summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/pic/length_string.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/pic/length_string.js')
-rw-r--r--js/src/jit-test/tests/pic/length_string.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/pic/length_string.js b/js/src/jit-test/tests/pic/length_string.js
new file mode 100644
index 0000000000..abdf62cbf6
--- /dev/null
+++ b/js/src/jit-test/tests/pic/length_string.js
@@ -0,0 +1,16 @@
+// length, string
+
+var expected = "3,6,4,3,6,4,3,6,4,3,6,4,";
+var actual = '';
+
+function f() {
+ var ss = [ "abc", "foobar", "quux" ];
+
+ for (var i = 0; i < 12; ++i) {
+ actual += ss[i%3].length + ',';
+ }
+}
+
+f();
+
+assertEq(actual, expected);