sundar@1379: /* sundar@1482: * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. sundar@1379: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. sundar@1482: * sundar@1379: * This code is free software; you can redistribute it and/or modify it sundar@1379: * under the terms of the GNU General Public License version 2 only, as sundar@1379: * published by the Free Software Foundation. sundar@1482: * sundar@1379: * This code is distributed in the hope that it will be useful, but WITHOUT sundar@1379: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or sundar@1379: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License sundar@1379: * version 2 for more details (a copy is included in the LICENSE file that sundar@1379: * accompanied this code). sundar@1482: * sundar@1379: * You should have received a copy of the GNU General Public License version sundar@1379: * 2 along with this work; if not, write to the Free Software Foundation, sundar@1379: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. sundar@1482: * sundar@1379: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA sundar@1379: * or visit www.oracle.com if you need additional information or have any sundar@1379: * questions. sundar@1379: */ sundar@1379: sundar@1379: /** sundar@1379: * JDK-8081156: jjs "nashorn.args" system property is not effective when script arguments are passed sundar@1379: * sundar@1379: * @test sundar@1379: * @fork sundar@1379: * @option -Dnashorn.args=-strict sundar@1379: * @argument foo sundar@1379: * @argument bar sundar@1379: * @run sundar@1379: */ sundar@1379: sundar@1379: try { sundar@1379: x = 14; sundar@1379: throw new Error("should have thrown ReferenceError"); sundar@1379: } catch (e) { sundar@1379: if (! (e instanceof ReferenceError)) { sundar@1379: throw e; sundar@1379: } sundar@1379: } sundar@1379: sundar@1379: Assert.assertTrue(arguments.length == 2); sundar@1379: Assert.assertTrue(arguments[0] == "foo"); sundar@1379: Assert.assertTrue(arguments[1] == "bar");