# HG changeset patch # User hannesw # Date 1441885804 -7200 # Node ID ca0e29811b81ca380ef2b0e8481b1410f924e46a # Parent 97bb1c7b0f50c87d0203f26201c2811f0b55c289 8134569: Add tests for prototype callsites Reviewed-by: attila, sundar diff -r 97bb1c7b0f50 -r ca0e29811b81 test/script/basic/JDK-8134569.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/script/basic/JDK-8134569.js Thu Sep 10 13:50:04 2015 +0200 @@ -0,0 +1,128 @@ +/* + * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * JDK-8134569: Add tests for prototype callsites + * + * @test + * @run + */ + +function create() { + function C() { + this.i1 = 1; + this.i2 = 2; + this.i3 = 3; + return this; + } + return new C(); +} + +function createEmpty() { + function C() { + return this; + } + return new C(); +} + +function createDeep() { + function C() { + this.i1 = 1; + this.i2 = 2; + this.i3 = 3; + return this; + } + function D() { + this.p1 = 1; + this.p2 = 2; + this.p3 = 3; + return this; + } + C.prototype = new D(); + return new C(); +} + +function createEval() { + return eval("Object.create({})"); +} + +function p(o) { print(o.x) } + +var a, b; + +create(); +a = create(); +b = create(); +a.__proto__.x = 123; + +p(a); +p(b); + +a = create(); +b = create(); +b.__proto__.x = 123; + +p(a); +p(b); + +a = createEmpty(); +b = createEmpty(); +a.__proto__.x = 123; + +p(a); +p(b); + +a = createEmpty(); +b = createEmpty(); +b.__proto__.x = 123; + +p(a); +p(b); + +a = createDeep(); +b = createDeep(); +a.__proto__.__proto__.x = 123; + +p(a); +p(b); + +a = createDeep(); +b = createDeep(); +b.__proto__.__proto__.x = 123; + +p(a); +p(b); + +a = createEval(); +b = createEval(); +a.__proto__.x = 123; + +p(a); +p(b); + +a = createEval(); +b = createEval(); +b.__proto__.x = 123; + +p(a); +p(b); diff -r 97bb1c7b0f50 -r ca0e29811b81 test/script/basic/JDK-8134569.js.EXPECTED --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/script/basic/JDK-8134569.js.EXPECTED Thu Sep 10 13:50:04 2015 +0200 @@ -0,0 +1,16 @@ +123 +undefined +undefined +123 +123 +undefined +undefined +123 +123 +undefined +undefined +123 +123 +undefined +undefined +123