hannesw@1060: /* hannesw@1060: * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. hannesw@1060: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. hannesw@1060: * hannesw@1060: * This code is free software; you can redistribute it and/or modify it hannesw@1060: * under the terms of the GNU General Public License version 2 only, as hannesw@1060: * published by the Free Software Foundation. hannesw@1060: * hannesw@1060: * This code is distributed in the hope that it will be useful, but WITHOUT hannesw@1060: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or hannesw@1060: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License hannesw@1060: * version 2 for more details (a copy is included in the LICENSE file that hannesw@1060: * accompanied this code). hannesw@1060: * hannesw@1060: * You should have received a copy of the GNU General Public License version hannesw@1060: * 2 along with this work; if not, write to the Free Software Foundation, hannesw@1060: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. hannesw@1060: * hannesw@1060: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA hannesw@1060: * or visit www.oracle.com if you need additional information or have any hannesw@1060: * questions. hannesw@1060: */ hannesw@1060: hannesw@1060: /** hannesw@1060: * JDK-8060011: Concatenating an array and converting it to Java gives wrong result hannesw@1060: * hannesw@1060: * @test hannesw@1060: * @run hannesw@1060: */ hannesw@1060: hannesw@1060: hannesw@1060: function compareAsJavaArrays(a1, a2) { hannesw@1060: var ja1 = Java.to(a1); hannesw@1060: var ja2 = Java.to(a2); hannesw@1060: if (ja1.length !== ja2.length) { hannesw@1060: throw "different length"; hannesw@1060: } hannesw@1060: for (var i = 0; i < ja1.length; i++) { hannesw@1060: if (ja1[i] !== ja2[i]) { hannesw@1060: throw "different element at " + i; hannesw@1060: } hannesw@1060: } hannesw@1060: if (java.util.Arrays.toString(ja1) !== java.util.Arrays.toString(ja2)) { hannesw@1060: throw "different string representation"; hannesw@1060: } hannesw@1060: } hannesw@1060: hannesw@1060: compareAsJavaArrays([0, 1, 2, 3], hannesw@1060: [0].concat([1, 2, 3])); hannesw@1060: compareAsJavaArrays([1000000000, 2000000000, 3000000000, 4000000000], hannesw@1060: [1000000000].concat([2000000000, 3000000000, 4000000000])); hannesw@1060: compareAsJavaArrays([0.5, 1.5, 2.5, 3.5], hannesw@1060: [0.5].concat([1.5, 2.5, 3.5])); hannesw@1060: compareAsJavaArrays(["0", "1", "2", "3"], hannesw@1060: ["0"].concat(["1", "2", "3"])); hannesw@1060: hannesw@1060: hannesw@1060: