author | stsmirno |
Mon, 17 Oct 2016 18:54:12 -0400 | |
changeset 41705 | 332239c052cc |
parent 27898 | 813ad96387b3 |
permissions | -rw-r--r-- |
21114
624bcbea49bb
8026781: Add missing test to exercise -XX:+UseLargePagesInMetaspace
stefank
parents:
diff
changeset
|
1 |
/* |
41705
332239c052cc
8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents:
27898
diff
changeset
|
2 |
* Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved. |
332239c052cc
8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents:
27898
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
332239c052cc
8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents:
27898
diff
changeset
|
4 |
* |
332239c052cc
8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents:
27898
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
332239c052cc
8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents:
27898
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
332239c052cc
8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents:
27898
diff
changeset
|
7 |
* published by the Free Software Foundation. |
332239c052cc
8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents:
27898
diff
changeset
|
8 |
* |
332239c052cc
8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents:
27898
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
332239c052cc
8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents:
27898
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
332239c052cc
8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents:
27898
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
332239c052cc
8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents:
27898
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
332239c052cc
8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents:
27898
diff
changeset
|
13 |
* accompanied this code). |
332239c052cc
8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents:
27898
diff
changeset
|
14 |
* |
332239c052cc
8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents:
27898
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
332239c052cc
8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents:
27898
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
332239c052cc
8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents:
27898
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
332239c052cc
8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents:
27898
diff
changeset
|
18 |
* |
332239c052cc
8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents:
27898
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
332239c052cc
8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents:
27898
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
332239c052cc
8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents:
27898
diff
changeset
|
21 |
* questions. |
332239c052cc
8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents:
27898
diff
changeset
|
22 |
*/ |
21114
624bcbea49bb
8026781: Add missing test to exercise -XX:+UseLargePagesInMetaspace
stefank
parents:
diff
changeset
|
23 |
|
624bcbea49bb
8026781: Add missing test to exercise -XX:+UseLargePagesInMetaspace
stefank
parents:
diff
changeset
|
24 |
/* |
624bcbea49bb
8026781: Add missing test to exercise -XX:+UseLargePagesInMetaspace
stefank
parents:
diff
changeset
|
25 |
* @test TestSystemGC |
624bcbea49bb
8026781: Add missing test to exercise -XX:+UseLargePagesInMetaspace
stefank
parents:
diff
changeset
|
26 |
* @key gc |
27692
11c231c781dc
8062537: [TESTBUG] Conflicting GC combinations in hotspot tests
eistepan
parents:
21114
diff
changeset
|
27 |
* @requires vm.gc=="null" |
21114
624bcbea49bb
8026781: Add missing test to exercise -XX:+UseLargePagesInMetaspace
stefank
parents:
diff
changeset
|
28 |
* @summary Runs System.gc() with different flags. |
624bcbea49bb
8026781: Add missing test to exercise -XX:+UseLargePagesInMetaspace
stefank
parents:
diff
changeset
|
29 |
* @run main/othervm TestSystemGC |
624bcbea49bb
8026781: Add missing test to exercise -XX:+UseLargePagesInMetaspace
stefank
parents:
diff
changeset
|
30 |
* @run main/othervm -XX:+UseSerialGC TestSystemGC |
624bcbea49bb
8026781: Add missing test to exercise -XX:+UseLargePagesInMetaspace
stefank
parents:
diff
changeset
|
31 |
* @run main/othervm -XX:+UseParallelGC TestSystemGC |
624bcbea49bb
8026781: Add missing test to exercise -XX:+UseLargePagesInMetaspace
stefank
parents:
diff
changeset
|
32 |
* @run main/othervm -XX:+UseParallelGC -XX:-UseParallelOldGC TestSystemGC |
624bcbea49bb
8026781: Add missing test to exercise -XX:+UseLargePagesInMetaspace
stefank
parents:
diff
changeset
|
33 |
* @run main/othervm -XX:+UseConcMarkSweepGC TestSystemGC |
624bcbea49bb
8026781: Add missing test to exercise -XX:+UseLargePagesInMetaspace
stefank
parents:
diff
changeset
|
34 |
* @run main/othervm -XX:+UseConcMarkSweepGC -XX:+ExplicitGCInvokesConcurrent TestSystemGC |
624bcbea49bb
8026781: Add missing test to exercise -XX:+UseLargePagesInMetaspace
stefank
parents:
diff
changeset
|
35 |
* @run main/othervm -XX:+UseG1GC TestSystemGC |
624bcbea49bb
8026781: Add missing test to exercise -XX:+UseLargePagesInMetaspace
stefank
parents:
diff
changeset
|
36 |
* @run main/othervm -XX:+UseG1GC -XX:+ExplicitGCInvokesConcurrent TestSystemGC |
624bcbea49bb
8026781: Add missing test to exercise -XX:+UseLargePagesInMetaspace
stefank
parents:
diff
changeset
|
37 |
* @run main/othervm -XX:+UseLargePages TestSystemGC |
624bcbea49bb
8026781: Add missing test to exercise -XX:+UseLargePagesInMetaspace
stefank
parents:
diff
changeset
|
38 |
* @run main/othervm -XX:+UseLargePages -XX:+UseLargePagesInMetaspace TestSystemGC |
624bcbea49bb
8026781: Add missing test to exercise -XX:+UseLargePagesInMetaspace
stefank
parents:
diff
changeset
|
39 |
*/ |
624bcbea49bb
8026781: Add missing test to exercise -XX:+UseLargePagesInMetaspace
stefank
parents:
diff
changeset
|
40 |
|
624bcbea49bb
8026781: Add missing test to exercise -XX:+UseLargePagesInMetaspace
stefank
parents:
diff
changeset
|
41 |
public class TestSystemGC { |
624bcbea49bb
8026781: Add missing test to exercise -XX:+UseLargePagesInMetaspace
stefank
parents:
diff
changeset
|
42 |
public static void main(String args[]) throws Exception { |
624bcbea49bb
8026781: Add missing test to exercise -XX:+UseLargePagesInMetaspace
stefank
parents:
diff
changeset
|
43 |
System.gc(); |
624bcbea49bb
8026781: Add missing test to exercise -XX:+UseLargePagesInMetaspace
stefank
parents:
diff
changeset
|
44 |
} |
624bcbea49bb
8026781: Add missing test to exercise -XX:+UseLargePagesInMetaspace
stefank
parents:
diff
changeset
|
45 |
} |