jdk-24/jdk/test/tools/jjs/addmodulesrepeat.js
Athijegannathan Sundararajan d47b7ffca5 8167018: Nashorn and jjs should support --module-path and --add-modules options
Reviewed-by: jlaskey, hannesw
2016-10-07 21:28:00 +05:30

18 lines
494 B
JavaScript

/*
* This is the test JavaScript program used in jjs-modulepathTest.sh
*/
print("--module-path passed: " + $OPTIONS._module_path);
print("--add-modules passed: " + $OPTIONS._add_modules);
if ($OPTIONS._add_modules != "java.base,com.greetings") {
throw new Error("--add-modules values are not merged!");
}
var Hello = com.greetings.Hello;
var moduleName = Hello.class.module.name;
if (moduleName != "com.greetings") {
throw new Error("Expected module name to be com.greetings");
}