< prev index next >

test/gc/TestVerifySilently.java

Print this page




   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  */
  23 
  24 /* @test TestVerifySilently.java
  25  * @key gc
  26  * @bug 8032771
  27  * @summary Test silent verification.
  28  * @library /testlibrary


  29  */
  30 
  31 import com.oracle.java.testlibrary.OutputAnalyzer;
  32 import com.oracle.java.testlibrary.ProcessTools;
  33 import java.util.ArrayList;
  34 import java.util.Collections;
  35 
  36 class RunSystemGC {
  37   public static void main(String args[]) throws Exception {
  38     System.gc();
  39   }
  40 }
  41 
  42 
  43 public class TestVerifySilently {
  44   private static String[] getTestJavaOpts() {
  45     String testVmOptsStr = System.getProperty("test.java.opts");
  46     if (!testVmOptsStr.isEmpty()) {
  47       return testVmOptsStr.split(" ");
  48     } else {




   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  */
  23 
  24 /* @test TestVerifySilently.java
  25  * @key gc
  26  * @bug 8032771
  27  * @summary Test silent verification.
  28  * @library /testlibrary
  29  * @build com.oracle.java.testlibrary.*
  30  * @run main/othervm TestVerifySilently
  31  */
  32 
  33 import com.oracle.java.testlibrary.OutputAnalyzer;
  34 import com.oracle.java.testlibrary.ProcessTools;
  35 import java.util.ArrayList;
  36 import java.util.Collections;
  37 
  38 class RunSystemGC {
  39   public static void main(String args[]) throws Exception {
  40     System.gc();
  41   }
  42 }
  43 
  44 
  45 public class TestVerifySilently {
  46   private static String[] getTestJavaOpts() {
  47     String testVmOptsStr = System.getProperty("test.java.opts");
  48     if (!testVmOptsStr.isEmpty()) {
  49       return testVmOptsStr.split(" ");
  50     } else {


< prev index next >