nashorn/test/script/nosecurity/readprint.js
author twisti
Wed, 11 Nov 2015 14:40:38 -1000
changeset 34173 01bb07d23a5b
parent 31489 fcccd041e11b
permissions -rw-r--r--
8141133: [JVMCI] crash during safepoint deopt if rethrow_exception is set Reviewed-by: twisti Contributed-by: Gilles Duboscq <gilles.m.duboscq@oracle.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
31489
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
     1
/*
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
     2
 * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
     4
 *
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
     7
 * published by the Free Software Foundation.
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
     8
 *
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    13
 * accompanied this code).
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    14
 *
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    18
 *
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    21
 * questions.
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    22
 */
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    23
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    24
/**
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    25
 * This is a dummy script accompanying JDK-8130127.js.
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    26
 *
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    27
 * @subtest
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    28
 * @run ignore supplemental
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    29
 */
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    30
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    31
var l = readLine()
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    32
print(l)
fcccd041e11b 8130127: streamline input parameter of Nashorn scripting $EXEC function
mhaupt
parents:
diff changeset
    33