]> git.saurik.com Git - apple/javascriptcore.git/blobdiff - tests/stress/plus-boolean-or-int.js
JavaScriptCore-7600.1.4.9.tar.gz
[apple/javascriptcore.git] / tests / stress / plus-boolean-or-int.js
diff --git a/tests/stress/plus-boolean-or-int.js b/tests/stress/plus-boolean-or-int.js
new file mode 100644 (file)
index 0000000..a1d3d5c
--- /dev/null
@@ -0,0 +1,24 @@
+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);
+    test(42, 10, 52);
+}
+
+// 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);
+