< prev index next >

test/hotspot/jtreg/runtime/modules/PatchModule/PatchModuleTraceCL.java

Print this page
rev 59076 : [mq]: 8243945


  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 8069469
  27  * @summary Make sure -Xlog:class+load=info works properly with "modules" jimage,
  28             --patch-module, and with -Xbootclasspath/a
  29  * @modules java.base/jdk.internal.misc
  30  * @library /test/lib
  31  * @compile PatchModuleMain.java
  32  * @run main PatchModuleTraceCL
  33  */
  34 
  35 import jdk.test.lib.compiler.InMemoryJavaCompiler;
  36 import jdk.test.lib.process.OutputAnalyzer;
  37 import jdk.test.lib.process.ProcessTools;
  38 
  39 public class PatchModuleTraceCL {
  40 
  41     public static void main(String[] args) throws Exception {
  42         String source = "package javax.naming.spi; "                +
  43                         "public class NamingManager { "             +
  44                         "    static { "                             +
  45                         "        System.out.println(\"I pass!\"); " +
  46                         "    } "                                    +
  47                         "}";
  48 
  49         // Test -Xlog:class+load=info output for --patch-module
  50         ClassFileInstaller.writeClassToDisk("javax/naming/spi/NamingManager",
  51              InMemoryJavaCompiler.compile("javax.naming.spi.NamingManager", source, "--patch-module=java.naming"),
  52              "mods/java.naming");




  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 8069469
  27  * @summary Make sure -Xlog:class+load=info works properly with "modules" jimage,
  28             --patch-module, and with -Xbootclasspath/a
  29  * @modules java.base/jdk.internal.misc
  30  * @library /test/lib
  31  * @compile PatchModuleMain.java
  32  * @run driver PatchModuleTraceCL
  33  */
  34 
  35 import jdk.test.lib.compiler.InMemoryJavaCompiler;
  36 import jdk.test.lib.process.OutputAnalyzer;
  37 import jdk.test.lib.process.ProcessTools;
  38 
  39 public class PatchModuleTraceCL {
  40 
  41     public static void main(String[] args) throws Exception {
  42         String source = "package javax.naming.spi; "                +
  43                         "public class NamingManager { "             +
  44                         "    static { "                             +
  45                         "        System.out.println(\"I pass!\"); " +
  46                         "    } "                                    +
  47                         "}";
  48 
  49         // Test -Xlog:class+load=info output for --patch-module
  50         ClassFileInstaller.writeClassToDisk("javax/naming/spi/NamingManager",
  51              InMemoryJavaCompiler.compile("javax.naming.spi.NamingManager", source, "--patch-module=java.naming"),
  52              "mods/java.naming");


< prev index next >