test/script/basic/JDK-8058545.js

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

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

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

sundar@1015 1 /*
sundar@1015 2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
sundar@1015 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
sundar@1015 4 *
sundar@1015 5 * This code is free software; you can redistribute it and/or modify it
sundar@1015 6 * under the terms of the GNU General Public License version 2 only, as
sundar@1015 7 * published by the Free Software Foundation.
sundar@1015 8 *
sundar@1015 9 * This code is distributed in the hope that it will be useful, but WITHOUT
sundar@1015 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
sundar@1015 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
sundar@1015 12 * version 2 for more details (a copy is included in the LICENSE file that
sundar@1015 13 * accompanied this code).
sundar@1015 14 *
sundar@1015 15 * You should have received a copy of the GNU General Public License version
sundar@1015 16 * 2 along with this work; if not, write to the Free Software Foundation,
sundar@1015 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
sundar@1015 18 *
sundar@1015 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
sundar@1015 20 * or visit www.oracle.com if you need additional information or have any
sundar@1015 21 * questions.
sundar@1015 22 */
sundar@1015 23
sundar@1015 24 /**
sundar@1015 25 * JDK-8058545: With strict mode, bean property assignment of a non-existent property should result in TypeError
sundar@1015 26 *
sundar@1015 27 * @test
sundar@1015 28 * @run
sundar@1015 29 */
sundar@1015 30
sundar@1015 31 'use strict';
sundar@1015 32 var File = Java.type("java.io.File");
sundar@1015 33 var f = new File(".");
sundar@1015 34 try {
sundar@1015 35 f.foo = 33;
sundar@1015 36 fail("Should have thrown TypeError");
sundar@1015 37 } catch (e) {
sundar@1015 38 if (! (e instanceof TypeError)) {
sundar@1015 39 fail("Expected TypeError, got " + e);
sundar@1015 40 }
sundar@1015 41 }

mercurial