test/script/trusted/NASHORN-653.js

Thu, 07 Feb 2013 17:17:29 +0530

author
sundar
date
Thu, 07 Feb 2013 17:17:29 +0530
changeset 77
d7e83be6e7aa
parent 7
test/script/basic/NASHORN-653.js@5a1b0714df0e
child 279
1fd18f40ab52
permissions
-rw-r--r--

8007715: Make sure that not all tests run with AllPermission
Reviewed-by: lagergren, attila

jlaskey@3 1 /*
jlaskey@7 2 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
jlaskey@3 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jlaskey@3 4 *
jlaskey@3 5 * This code is free software; you can redistribute it and/or modify it
jlaskey@3 6 * under the terms of the GNU General Public License version 2 only, as
jlaskey@3 7 * published by the Free Software Foundation.
jlaskey@3 8 *
jlaskey@3 9 * This code is distributed in the hope that it will be useful, but WITHOUT
jlaskey@3 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jlaskey@3 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jlaskey@3 12 * version 2 for more details (a copy is included in the LICENSE file that
jlaskey@3 13 * accompanied this code).
jlaskey@3 14 *
jlaskey@3 15 * You should have received a copy of the GNU General Public License version
jlaskey@3 16 * 2 along with this work; if not, write to the Free Software Foundation,
jlaskey@3 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jlaskey@3 18 *
jlaskey@3 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jlaskey@3 20 * or visit www.oracle.com if you need additional information or have any
jlaskey@3 21 * questions.
jlaskey@3 22 */
jlaskey@3 23
jlaskey@3 24 /**
jlaskey@3 25 * NASHORN-653 : Various problems with isTerminal and dead code generation from ASM
jlaskey@3 26 *
jlaskey@3 27 * @test
jlaskey@3 28 * @run
jlaskey@3 29 */
jlaskey@3 30
jlaskey@3 31 var script = " \
jlaskey@3 32 function a() { \
jlaskey@3 33 return true; \
jlaskey@3 34 } \
jlaskey@3 35 \
jlaskey@3 36 function b() { \
jlaskey@3 37 while (x) { \
jlaskey@3 38 return true; \
jlaskey@3 39 } \
jlaskey@3 40 } \
jlaskey@3 41 \
jlaskey@3 42 function c() { \
jlaskey@3 43 while (true) { \
jlaskey@3 44 return true; \
jlaskey@3 45 } \
jlaskey@3 46 } \
jlaskey@3 47 \
jlaskey@3 48 function d() { \
jlaskey@3 49 do { \
jlaskey@3 50 return true; \
jlaskey@3 51 } while (x); \
jlaskey@3 52 } \
jlaskey@3 53 \
jlaskey@3 54 function f() { \
jlaskey@3 55 for (;;) { \
jlaskey@3 56 return true; \
jlaskey@3 57 } \
jlaskey@3 58 } \
jlaskey@3 59 \
jlaskey@3 60 function e() { \
jlaskey@3 61 for (;;) { \
jlaskey@3 62 return true; \
jlaskey@3 63 } \
jlaskey@3 64 } \
jlaskey@3 65 \
jlaskey@3 66 function g() { \
jlaskey@3 67 for(;;) { \
jlaskey@3 68 print('goes on and on and on ... '); \
jlaskey@3 69 } \
jlaskey@3 70 print('x'); \
jlaskey@3 71 } \
jlaskey@3 72 ";
jlaskey@3 73
jlaskey@3 74 function runScriptEngine(opts, code) {
jlaskey@3 75 var imports = new JavaImporter(
jlaskey@3 76 Packages.jdk.nashorn.api.scripting,
jlaskey@3 77 java.io, java.lang, java.util);
jlaskey@3 78
jlaskey@3 79 with(imports) {
jlaskey@3 80 var fac = new NashornScriptEngineFactory();
jlaskey@3 81 // get current System.err
jlaskey@3 82 var oldErr = System.err;
jlaskey@3 83 var baos = new ByteArrayOutputStream();
jlaskey@3 84 var newErr = new PrintStream(baos);
jlaskey@3 85 try {
jlaskey@3 86 // set new standard err
jlaskey@3 87 System.setErr(newErr);
jlaskey@3 88 var strType = Java.type("java.lang.String");
jlaskey@3 89 var engine = fac.getScriptEngine(Java.toJavaArray(opts, strType));
jlaskey@3 90 engine.eval(code);
jlaskey@3 91 newErr.flush();
jlaskey@3 92 return new java.lang.String(baos.toByteArray());
jlaskey@3 93 } finally {
jlaskey@3 94 // restore System.err to old value
jlaskey@3 95 System.setErr(oldErr);
jlaskey@3 96 }
jlaskey@3 97 }
jlaskey@3 98 }
jlaskey@3 99
jlaskey@3 100 var result = runScriptEngine([ "--print-code" ], script);
jlaskey@3 101
jlaskey@3 102 if (result.indexOf("NOP") != -1) {
jlaskey@3 103 fail("ASM genenerates NOP*/ATHROW sequences - dead code is still in the script");
jlaskey@3 104 }

mercurial