test/jdk/tools/jjs/addmodulesrepeat.js
author lancea
Tue, 29 Oct 2019 14:22:18 -0400
changeset 58845 e492513d3630
parent 47216 71c04702a3d5
permissions -rw-r--r--
8231766: Files.copy and Files.move do not honor requested compression method when copying or moving within the same zip file Reviewed-by: clanger, bpb, alanb

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