jdk/test/tools/jjs/modulepath.js
author sundar
Fri, 07 Oct 2016 21:28:00 +0530
changeset 41374 092e014ed01e
permissions -rw-r--r--
8167018: Nashorn and jjs should support --module-path and --add-modules options Reviewed-by: jlaskey, hannesw

/*
 * 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);

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");
} else {
    print("Module name is " + moduleName);
}

var msg = Hello.greet();
if (msg != "Hello World!") {
    throw new Error("Expected 'Hello World!'");
} else {
    print(msg);
}