test/script/basic/JDK-8060011.js

Wed, 03 Jun 2015 18:08:57 +0200

author
hannesw
date
Wed, 03 Jun 2015 18:08:57 +0200
changeset 1396
d5a9705a27b1
parent 1060
6de46794603c
permissions
-rw-r--r--

8066237: Fuzzing bug: Parser error on optimistic recompilation
Reviewed-by: lagergren, attila

hannesw@1060 1 /*
hannesw@1060 2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
hannesw@1060 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
hannesw@1060 4 *
hannesw@1060 5 * This code is free software; you can redistribute it and/or modify it
hannesw@1060 6 * under the terms of the GNU General Public License version 2 only, as
hannesw@1060 7 * published by the Free Software Foundation.
hannesw@1060 8 *
hannesw@1060 9 * This code is distributed in the hope that it will be useful, but WITHOUT
hannesw@1060 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
hannesw@1060 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
hannesw@1060 12 * version 2 for more details (a copy is included in the LICENSE file that
hannesw@1060 13 * accompanied this code).
hannesw@1060 14 *
hannesw@1060 15 * You should have received a copy of the GNU General Public License version
hannesw@1060 16 * 2 along with this work; if not, write to the Free Software Foundation,
hannesw@1060 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
hannesw@1060 18 *
hannesw@1060 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
hannesw@1060 20 * or visit www.oracle.com if you need additional information or have any
hannesw@1060 21 * questions.
hannesw@1060 22 */
hannesw@1060 23
hannesw@1060 24 /**
hannesw@1060 25 * JDK-8060011: Concatenating an array and converting it to Java gives wrong result
hannesw@1060 26 *
hannesw@1060 27 * @test
hannesw@1060 28 * @run
hannesw@1060 29 */
hannesw@1060 30
hannesw@1060 31
hannesw@1060 32 function compareAsJavaArrays(a1, a2) {
hannesw@1060 33 var ja1 = Java.to(a1);
hannesw@1060 34 var ja2 = Java.to(a2);
hannesw@1060 35 if (ja1.length !== ja2.length) {
hannesw@1060 36 throw "different length";
hannesw@1060 37 }
hannesw@1060 38 for (var i = 0; i < ja1.length; i++) {
hannesw@1060 39 if (ja1[i] !== ja2[i]) {
hannesw@1060 40 throw "different element at " + i;
hannesw@1060 41 }
hannesw@1060 42 }
hannesw@1060 43 if (java.util.Arrays.toString(ja1) !== java.util.Arrays.toString(ja2)) {
hannesw@1060 44 throw "different string representation";
hannesw@1060 45 }
hannesw@1060 46 }
hannesw@1060 47
hannesw@1060 48 compareAsJavaArrays([0, 1, 2, 3],
hannesw@1060 49 [0].concat([1, 2, 3]));
hannesw@1060 50 compareAsJavaArrays([1000000000, 2000000000, 3000000000, 4000000000],
hannesw@1060 51 [1000000000].concat([2000000000, 3000000000, 4000000000]));
hannesw@1060 52 compareAsJavaArrays([0.5, 1.5, 2.5, 3.5],
hannesw@1060 53 [0.5].concat([1.5, 2.5, 3.5]));
hannesw@1060 54 compareAsJavaArrays(["0", "1", "2", "3"],
hannesw@1060 55 ["0"].concat(["1", "2", "3"]));
hannesw@1060 56
hannesw@1060 57
hannesw@1060 58

mercurial