8134569: Add tests for prototype callsites

Reviewed-by: attila, sundar
This commit is contained in:
Hannes Wallnöfer 2015-09-10 13:50:04 +02:00
parent bc7be8c881
commit 14a6271417
2 changed files with 144 additions and 0 deletions

View File

@ -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);

View File

@ -0,0 +1,16 @@
123
undefined
undefined
123
123
undefined
undefined
123
123
undefined
undefined
123
123
undefined
undefined
123