test/runtime/logging/ExceptionsTest.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 8146435.01 Cdiff test/runtime/logging/ExceptionsTest.java

test/runtime/logging/ExceptionsTest.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 49,79 **** OutputAnalyzer output = new OutputAnalyzer(pb.start()); output.shouldNotContain("[exceptions]"); output.shouldHaveExitValue(0); } public static void main(String[] args) throws Exception { ProcessBuilder pb = ProcessTools.createJavaProcessBuilder( ! "-Xlog:exceptions=info", "-Xcomp", "-XX:CompileCommand=compileonly,ExceptionsTest$InternalClass::compileMe", InternalClass.class.getName()); analyzeOutputOn(pb); pb = ProcessTools.createJavaProcessBuilder( ! "-XX:+TraceExceptions", "-Xcomp", "-XX:CompileCommand=compileonly,ExceptionsTest$InternalClass::compileMe", InternalClass.class.getName()); analyzeOutputOn(pb); pb = ProcessTools.createJavaProcessBuilder( ! "-Xlog:exceptions=off", "-Xcomp", "-XX:CompileCommand=compileonly,ExceptionsTest$InternalClass::compileMe", InternalClass.class.getName()); analyzeOutputOff(pb); pb = ProcessTools.createJavaProcessBuilder( ! "-XX:-TraceExceptions", "-Xcomp", "-XX:CompileCommand=compileonly,ExceptionsTest$InternalClass::compileMe", InternalClass.class.getName()); analyzeOutputOff(pb); } --- 49,81 ---- OutputAnalyzer output = new OutputAnalyzer(pb.start()); output.shouldNotContain("[exceptions]"); output.shouldHaveExitValue(0); } + // Each ProcessBuilder should disable CDS with -Xshare:off so that no steps + // that produce necessary logging are skipped. public static void main(String[] args) throws Exception { ProcessBuilder pb = ProcessTools.createJavaProcessBuilder( ! "-Xlog:exceptions=info", "-Xshare:off", "-Xcomp", "-XX:CompileCommand=compileonly,ExceptionsTest$InternalClass::compileMe", InternalClass.class.getName()); analyzeOutputOn(pb); pb = ProcessTools.createJavaProcessBuilder( ! "-XX:+TraceExceptions", "-Xshare:off", "-Xcomp", "-XX:CompileCommand=compileonly,ExceptionsTest$InternalClass::compileMe", InternalClass.class.getName()); analyzeOutputOn(pb); pb = ProcessTools.createJavaProcessBuilder( ! "-Xlog:exceptions=off", "-Xshare:off", "-Xcomp", "-XX:CompileCommand=compileonly,ExceptionsTest$InternalClass::compileMe", InternalClass.class.getName()); analyzeOutputOff(pb); pb = ProcessTools.createJavaProcessBuilder( ! "-XX:-TraceExceptions", "-Xshare:off", "-Xcomp", "-XX:CompileCommand=compileonly,ExceptionsTest$InternalClass::compileMe", InternalClass.class.getName()); analyzeOutputOff(pb); }
test/runtime/logging/ExceptionsTest.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File