sundar@1349: /* sundar@1482: * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. sundar@1349: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. sundar@1482: * sundar@1349: * This code is free software; you can redistribute it and/or modify it sundar@1349: * under the terms of the GNU General Public License version 2 only, as sundar@1349: * published by the Free Software Foundation. sundar@1482: * sundar@1349: * This code is distributed in the hope that it will be useful, but WITHOUT sundar@1349: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or sundar@1349: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License sundar@1349: * version 2 for more details (a copy is included in the LICENSE file that sundar@1349: * accompanied this code). sundar@1482: * sundar@1349: * You should have received a copy of the GNU General Public License version sundar@1349: * 2 along with this work; if not, write to the Free Software Foundation, sundar@1349: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. sundar@1482: * sundar@1349: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA sundar@1349: * or visit www.oracle.com if you need additional information or have any sundar@1349: * questions. sundar@1349: */ sundar@1349: sundar@1349: /** sundar@1349: * JDK-8080182: Array.prototype.sort throws IAE on inconsistent comparison sundar@1349: * sundar@1349: * @test sundar@1349: * @run sundar@1349: */ sundar@1349: sundar@1349: function Random() { sundar@1349: this.toString = function() { sundar@1349: return (Math.random() * 100).toString(); sundar@1349: } sundar@1349: } sundar@1349: sundar@1349: for (var i = 0; i < 100; ++i) { sundar@1349: var arr = []; sundar@1349: sundar@1349: for (var j = 0; j < 64; ++j) { sundar@1349: arr[j] = new Random(); sundar@1349: } sundar@1349: sundar@1349: // no IllegalArgumentException expected! sundar@1349: arr.sort(); sundar@1349: }