< prev index next >

test/runtime/CompressedOops/UseCompressedOops.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 /*
  25  * @test
  26  * @bug 8022865
  27  * @summary Tests for different combination of UseCompressedOops options
  28  * @library /testlibrary

  29  * @run main UseCompressedOops
  30  */
  31 import java.util.ArrayList;
  32 import java.util.Collections;
  33 import com.oracle.java.testlibrary.*;
  34 
  35 public class UseCompressedOops {
  36 
  37     public static void main(String[] args) throws Exception {
  38         testCompressedOopsModesGCs();
  39         testCompressedOopsModesGCs("-XX:+UseLargePages");
  40     }
  41 
  42     public static void testCompressedOopsModesGCs(String... flags) throws Exception {
  43         ArrayList<String> args = new ArrayList<>();
  44         Collections.addAll(args, flags);
  45 
  46         // Test default.
  47         testCompressedOopsModes(args);
  48         // Test GCs.




   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 /*
  25  * @test
  26  * @bug 8022865
  27  * @summary Tests for different combination of UseCompressedOops options
  28  * @library /testlibrary
  29  * @build com.oracle.java.testlibrary.*
  30  * @run main UseCompressedOops
  31  */
  32 import java.util.ArrayList;
  33 import java.util.Collections;
  34 import com.oracle.java.testlibrary.*;
  35 
  36 public class UseCompressedOops {
  37 
  38     public static void main(String[] args) throws Exception {
  39         testCompressedOopsModesGCs();
  40         testCompressedOopsModesGCs("-XX:+UseLargePages");
  41     }
  42 
  43     public static void testCompressedOopsModesGCs(String... flags) throws Exception {
  44         ArrayList<String> args = new ArrayList<>();
  45         Collections.addAll(args, flags);
  46 
  47         // Test default.
  48         testCompressedOopsModes(args);
  49         // Test GCs.


< prev index next >