test/script/basic/NASHORN-837.js

Wed, 03 Jun 2015 10:42:06 +0200

author
hannesw
date
Wed, 03 Jun 2015 10:42:06 +0200
changeset 1393
dcbf5e2121e3
parent 962
ac62e33a99b0
child 1205
4112748288bb
permissions
-rw-r--r--

8066220: Fuzzing bug: MethodHandle bug (Object,Object) != (boolean)Object
Reviewed-by: lagergren, attila, sundar

lagergren@13 1 /*
lagergren@13 2 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
lagergren@13 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
attila@962 4 *
lagergren@13 5 * This code is free software; you can redistribute it and/or modify it
lagergren@13 6 * under the terms of the GNU General Public License version 2 only, as
lagergren@13 7 * published by the Free Software Foundation.
attila@962 8 *
lagergren@13 9 * This code is distributed in the hope that it will be useful, but WITHOUT
lagergren@13 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
lagergren@13 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
lagergren@13 12 * version 2 for more details (a copy is included in the LICENSE file that
lagergren@13 13 * accompanied this code).
attila@962 14 *
lagergren@13 15 * You should have received a copy of the GNU General Public License version
lagergren@13 16 * 2 along with this work; if not, write to the Free Software Foundation,
lagergren@13 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
attila@962 18 *
lagergren@13 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
lagergren@13 20 * or visit www.oracle.com if you need additional information or have any
lagergren@13 21 * questions.
lagergren@13 22 */
lagergren@13 23
lagergren@13 24 /**
lagergren@13 25 * NASHORN-837 : refSymbol lookup caused nullpointer exception in Lower
lagergren@13 26 *
lagergren@13 27 * @test
lagergren@13 28 * @run
lagergren@13 29 */
lagergren@13 30
lagergren@13 31 try {
attila@144 32 throw new TypeError('error');
attila@144 33 } catch (iox) {
attila@144 34 var f = function() {
attila@144 35 if(iox.message != 'error') {
attila@144 36 print("Failure! iox did not throw correct exception");
attila@144 37 }
lagergren@13 38 }
lagergren@13 39 }
attila@144 40 f();

mercurial