test/script/basic/JDK-8019805.js

Wed, 18 Jun 2014 12:35:42 -0700

author
katleman
date
Wed, 18 Jun 2014 12:35:42 -0700
changeset 863
6e9c4e34bc61
parent 606
7cc5ff16380f
child 952
6d5471a497fb
child 962
ac62e33a99b0
permissions
-rw-r--r--

Added tag jdk8u20-b19 for changeset b047df215de4

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

mercurial