< prev index next >

test/runtime/SharedArchiveFile/BootAppendTests.java

Print this page
rev 12368 : 8078450: Implement consistent process for quarantine of tests
Reviewed-by: dfazunen, dholmes, sspitsyn


  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  * @summary Testing -Xbootclasspath/a support for CDS
  27  * @library /test/lib
  28  * @modules java.base/jdk.internal.misc
  29  *          java.management
  30  *          jdk.jvmstat/sun.jvmstat.monitor
  31  * @ignore 8150683
  32  * @compile javax/sound/sampled/MyClass.jasm
  33  * @compile org/omg/CORBA/Context.jasm
  34  * @compile nonjdk/myPackage/MyClass.java
  35  * @build LoadClass
  36  * @run main/othervm BootAppendTests
  37  */
  38 
  39 import java.io.File;
  40 import java.io.FileOutputStream;
  41 import java.io.IOException;
  42 import java.io.PrintStream;
  43 
  44 import java.nio.file.Path;
  45 import java.nio.file.Paths;
  46 
  47 import jdk.test.lib.process.ProcessTools;
  48 import jdk.test.lib.process.OutputAnalyzer;
  49 
  50 public class BootAppendTests {
  51     private static final String APP_CLASS = "LoadClass";




  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  * @summary Testing -Xbootclasspath/a support for CDS
  27  * @library /test/lib
  28  * @modules java.base/jdk.internal.misc
  29  *          java.management
  30  *          jdk.jvmstat/sun.jvmstat.monitor

  31  * @compile javax/sound/sampled/MyClass.jasm
  32  * @compile org/omg/CORBA/Context.jasm
  33  * @compile nonjdk/myPackage/MyClass.java
  34  * @build LoadClass
  35  * @run main/othervm BootAppendTests
  36  */
  37 
  38 import java.io.File;
  39 import java.io.FileOutputStream;
  40 import java.io.IOException;
  41 import java.io.PrintStream;
  42 
  43 import java.nio.file.Path;
  44 import java.nio.file.Paths;
  45 
  46 import jdk.test.lib.process.ProcessTools;
  47 import jdk.test.lib.process.OutputAnalyzer;
  48 
  49 public class BootAppendTests {
  50     private static final String APP_CLASS = "LoadClass";


< prev index next >