< prev index next >

test/hotspot/jtreg/gc/shenandoah/oom/TestThreadFailure.java

Print this page

 1 /*
 2  * Copyright (c) 2018, Red Hat, Inc. All rights reserved.

 3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 4  *
 5  * This code is free software; you can redistribute it and/or modify it
 6  * under the terms of the GNU General Public License version 2 only, as
 7  * published by the Free Software Foundation.
 8  *
 9  * This code is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
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  *

56                 Thread thread = new NastyThread();
57                 thread.start();
58                 thread.join();
59             }
60             System.out.println("All good");
61             return;
62         }
63 
64         {
65             OutputAnalyzer analyzer = ProcessTools.executeLimitedTestJava(
66                     "-Xmx32m",
67                     "-XX:+UnlockExperimentalVMOptions",
68                     "-XX:+UseShenandoahGC",
69                     TestThreadFailure.class.getName(),
70                     "test");
71 
72             analyzer.shouldHaveExitValue(0);
73             analyzer.shouldContain("java.lang.OutOfMemoryError");
74             analyzer.shouldContain("All good");
75         }















76     }
77 }

 1 /*
 2  * Copyright (c) 2018, Red Hat, Inc. All rights reserved.
 3  * Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
 4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 5  *
 6  * This code is free software; you can redistribute it and/or modify it
 7  * under the terms of the GNU General Public License version 2 only, as
 8  * published by the Free Software Foundation.
 9  *
10  * This code is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
13  * version 2 for more details (a copy is included in the LICENSE file that
14  * accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License version
17  * 2 along with this work; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19  *
20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21  * or visit www.oracle.com if you need additional information or have any
22  * questions.
23  *

57                 Thread thread = new NastyThread();
58                 thread.start();
59                 thread.join();
60             }
61             System.out.println("All good");
62             return;
63         }
64 
65         {
66             OutputAnalyzer analyzer = ProcessTools.executeLimitedTestJava(
67                     "-Xmx32m",
68                     "-XX:+UnlockExperimentalVMOptions",
69                     "-XX:+UseShenandoahGC",
70                     TestThreadFailure.class.getName(),
71                     "test");
72 
73             analyzer.shouldHaveExitValue(0);
74             analyzer.shouldContain("java.lang.OutOfMemoryError");
75             analyzer.shouldContain("All good");
76         }
77 
78         {
79             ProcessBuilder pb = ProcessTools.createLimitedTestJavaProcessBuilder(
80                     "-Xmx32m",
81                     "-XX:+UnlockExperimentalVMOptions",
82                     "-XX:+UseShenandoahGC", "-XX:ShenandoahGCMode=generational",
83                     "-XX:ShenandoahNoProgressThreshold=16",
84                     TestThreadFailure.class.getName(),
85                     "test");
86 
87             OutputAnalyzer analyzer = new OutputAnalyzer(pb.start());
88             analyzer.shouldHaveExitValue(0);
89             analyzer.shouldContain("java.lang.OutOfMemoryError");
90             analyzer.shouldContain("All good");
91         }
92     }
93 }
< prev index next >