# HG changeset patch # User sundar # Date 1400554929 -19800 # Node ID 601c81b4165d4f8fcff3efe1d947d7f0e5ac31d9 # Parent 97932f6ad950ae5a73a9da5c96e6e58503ff646b 8043443: Test framework changes to run script tests without security manager Reviewed-by: attila diff -r 97932f6ad950 -r 601c81b4165d nashorn/make/build.xml --- a/nashorn/make/build.xml Wed Jul 05 19:41:13 2017 +0200 +++ b/nashorn/make/build.xml Tue May 20 08:32:09 2014 +0530 @@ -360,6 +360,10 @@ + + + + @@ -376,6 +380,21 @@ + + + + + + + + + + + + + + diff -r 97932f6ad950 -r 601c81b4165d nashorn/make/project.properties --- a/nashorn/make/project.properties Wed Jul 05 19:41:13 2017 +0200 +++ b/nashorn/make/project.properties Tue May 20 08:32:09 2014 +0530 @@ -59,6 +59,7 @@ # test results directory build.test.results.dir=${build.dir}/test/reports +build.nosecurity.test.results.dir=${build.dir}/test/nosecurity/reports # This directory is removed when the project is cleaned: dist.dir=dist @@ -113,6 +114,7 @@ # test scripts to run test.dir=test +test.nosecurity.dir=test/script/nosecurity test.script.dir=test/script test.basic.dir=test/script/basic test.maptests.dir=test/script/maptests @@ -131,8 +133,12 @@ test-sys-prop.es5conform.testcases.dir=${test.external.dir}/ES5Conform/TestCases test-sys-prop.test.basic.dir=${test.basic.dir} +test-sys-prop-no-security.test.dir=${test.dir} +test-sys-prop-no-security.test.js.roots=${test.nosecurity.dir} + # framework root for our script tests test-sys-prop.test.js.framework=${test.script.dir}/assert.js +test-sys-prop-no-security.test.js.framework=${test.script.dir}/assert.js # Control the verbosity of ParserTest test-sys-prop.parsertest.verbose=false diff -r 97932f6ad950 -r 601c81b4165d nashorn/test/script/nosecurity/nosecurity.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nashorn/test/script/nosecurity/nosecurity.js Tue May 20 08:32:09 2014 +0530 @@ -0,0 +1,34 @@ +/* + * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +/** + * 8043443: Test framework changes to run script tests without security manager + * @test + * @run + */ + +var System = Java.type("java.lang.System"); + +if (System.securityManager != null) { + fail("SecurityManager is set!"); +}