]> git.saurik.com Git - apple/javascriptcore.git/blobdiff - tests/stress/plus-boolean-exit.js
JavaScriptCore-7600.1.4.9.tar.gz
[apple/javascriptcore.git] / tests / stress / plus-boolean-exit.js
diff --git a/tests/stress/plus-boolean-exit.js b/tests/stress/plus-boolean-exit.js
new file mode 100644 (file)
index 0000000..e02141d
--- /dev/null
@@ -0,0 +1,22 @@
+function foo(a, b) {
+    return a.f + b.f;
+}
+
+noInline(foo);
+
+function test(a, b, c) {
+    var result = foo({f:a}, {f:b});
+    if (result != c)
+        throw "Error: expected " + c + " but got: " + result;
+}
+
+for (var i = 0; i < 100000; ++i)
+    test(true, 42, 43);
+
+// Now try some unexpected things, in descending order of possible badness.
+test(true, 2147483647, 2147483648);
+test(false, 42, 42);
+test(1, 2, 3);
+test(true, true, 2);
+test(1.5, 1.5, 3);
+