< prev index next >

test/hotspot/jtreg/runtime/modules/ModuleOptionsTest.java

Print this page
rev 59076 : [mq]: 8243945


  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8136930
  27  * @summary Test that the VM only recognizes the last specified --list-modules
  28  *          options but accumulates --add-module values.
  29  * @modules java.base/jdk.internal.misc
  30  * @library /test/lib

  31  */
  32 
  33 import jdk.test.lib.process.OutputAnalyzer;
  34 import jdk.test.lib.process.ProcessTools;
  35 
  36 // Test that the VM behaves correctly when processing module related options.
  37 public class ModuleOptionsTest {
  38 
  39     public static void main(String[] args) throws Exception {
  40 
  41         // Test that multiple --add-modules options are cumulative, not last one wins.
  42         // An exception should be thrown because module i_dont_exist doesn't exist.
  43         ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
  44             "--add-modules=i_dont_exist", "--add-modules=java.base", "-version");
  45         OutputAnalyzer output = new OutputAnalyzer(pb.start());
  46         output.shouldContain("FindException");
  47         output.shouldContain("i_dont_exist");
  48         output.shouldHaveExitValue(1);
  49 
  50         // Test that the last --limit-modules is the only one recognized.  No exception


  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8136930
  27  * @summary Test that the VM only recognizes the last specified --list-modules
  28  *          options but accumulates --add-module values.
  29  * @modules java.base/jdk.internal.misc
  30  * @library /test/lib
  31  * @run driver ModuleOptionsTest
  32  */
  33 
  34 import jdk.test.lib.process.OutputAnalyzer;
  35 import jdk.test.lib.process.ProcessTools;
  36 
  37 // Test that the VM behaves correctly when processing module related options.
  38 public class ModuleOptionsTest {
  39 
  40     public static void main(String[] args) throws Exception {
  41 
  42         // Test that multiple --add-modules options are cumulative, not last one wins.
  43         // An exception should be thrown because module i_dont_exist doesn't exist.
  44         ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
  45             "--add-modules=i_dont_exist", "--add-modules=java.base", "-version");
  46         OutputAnalyzer output = new OutputAnalyzer(pb.start());
  47         output.shouldContain("FindException");
  48         output.shouldContain("i_dont_exist");
  49         output.shouldHaveExitValue(1);
  50 
  51         // Test that the last --limit-modules is the only one recognized.  No exception
< prev index next >