hotspot/test/runtime/modules/Xpatch/XpatchDupJavaBase.java
author lana
Thu, 12 May 2016 15:15:02 +0000
changeset 37915 be4ff50b6cb6
parent 37773 e5b3e9732c3c
child 38300 9f4fc01dc4aa
permissions -rw-r--r--
Added tag jdk-9+118 for changeset cc643de7cb06
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
     1
/*
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
     2
 * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
     4
 *
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
     7
 * published by the Free Software Foundation.
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
     8
 *
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    13
 * accompanied this code).
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    14
 *
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    18
 *
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    21
 * questions.
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    22
 */
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    23
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    24
/*
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    25
 * @test
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    26
 * @summary VM exit initialization results if java.base is specificed more than once to Xpatch.
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    27
 * @library /testlibrary
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    28
 */
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    29
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    30
import jdk.test.lib.*;
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    31
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    32
public class XpatchDupJavaBase {
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    33
  // The VM should exit initialization if java.base is specified
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    34
  // more than once to -Xpatch.
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    35
  public static void main(String args[]) throws Exception {
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    36
    ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    37
      "-Xpatch:java.base=javabase_dir",
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    38
      "-Xpatch:java.base=javabase_dir",
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    39
      "-version");
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    40
    OutputAnalyzer output = new OutputAnalyzer(pb.start());
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    41
    output.shouldContain("Cannot specify java.base more than once to -Xpatch");
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    42
    output.shouldHaveExitValue(1);
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    43
  }
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    44
}
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents:
diff changeset
    45