test/hotspot/jtreg/gc/TestCardTablePageCommits.java
author shade
Mon, 26 Mar 2018 09:56:36 +0200
branchepsilon-gc-branch
changeset 56348 f3b0961adb3c
parent 47216 71c04702a3d5
child 53523 4c5184c56dc2
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
28026
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents:
diff changeset
     1
/*
41705
332239c052cc 8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents: 40886
diff changeset
     2
 * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
332239c052cc 8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents: 40886
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: 40886
diff changeset
     4
 *
332239c052cc 8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents: 40886
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: 40886
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: 40886
diff changeset
     7
 * published by the Free Software Foundation.
332239c052cc 8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents: 40886
diff changeset
     8
 *
332239c052cc 8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents: 40886
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: 40886
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: 40886
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: 40886
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: 40886
diff changeset
    13
 * accompanied this code).
332239c052cc 8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents: 40886
diff changeset
    14
 *
332239c052cc 8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents: 40886
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: 40886
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: 40886
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: 40886
diff changeset
    18
 *
332239c052cc 8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents: 40886
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: 40886
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: 40886
diff changeset
    21
 * questions.
332239c052cc 8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents: 40886
diff changeset
    22
 */
28026
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents:
diff changeset
    23
30604
b8d532cb6420 8067013: Rename the com.oracle.java.testlibary package
ykantser
parents: 29678
diff changeset
    24
import jdk.test.lib.JDKToolFinder;
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 39414
diff changeset
    25
import jdk.test.lib.process.ProcessTools;
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 39414
diff changeset
    26
import jdk.test.lib.process.OutputAnalyzer;
30604
b8d532cb6420 8067013: Rename the com.oracle.java.testlibary package
ykantser
parents: 29678
diff changeset
    27
import jdk.test.lib.Platform;
28026
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents:
diff changeset
    28
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents:
diff changeset
    29
/*
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents:
diff changeset
    30
 * @test TestCardTablePageCommits
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents:
diff changeset
    31
 * @key gc
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents:
diff changeset
    32
 * @bug 8059066
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents:
diff changeset
    33
 * @summary Tests that the card table does not commit the same page twice
39414
4adf52148100 8160088: update hotspot tests depending on GC to use @requires vm.gc.X
dfazunen
parents: 36851
diff changeset
    34
 * @requires vm.gc.Parallel
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 39414
diff changeset
    35
 * @library /test/lib
36851
03e2f4d0a421 8153737: Unsupported Module
chegar
parents: 36576
diff changeset
    36
 * @modules java.base/jdk.internal.misc
28026
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents:
diff changeset
    37
 * @run driver TestCardTablePageCommits
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents:
diff changeset
    38
 */
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents:
diff changeset
    39
public class TestCardTablePageCommits {
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents:
diff changeset
    40
    public static void main(String args[]) throws Exception {
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents:
diff changeset
    41
        // The test is run with a small heap to make sure all pages in the card
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents:
diff changeset
    42
        // table gets committed. Need 8 MB heap to trigger the bug on SPARC
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents:
diff changeset
    43
        // because of 8kB pages, assume 4 KB pages for all other CPUs.
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents:
diff changeset
    44
        String Xmx = Platform.isSparc() ? "-Xmx8m" : "-Xmx4m";
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents:
diff changeset
    45
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents:
diff changeset
    46
        String[] opts = {Xmx, "-XX:NativeMemoryTracking=detail", "-XX:+UseParallelGC", "-version"};
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents:
diff changeset
    47
        ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(opts);
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents:
diff changeset
    48
        OutputAnalyzer output = new OutputAnalyzer(pb.start());
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents:
diff changeset
    49
        output.shouldHaveExitValue(0);
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents:
diff changeset
    50
    }
3694b71eef6c 8059066: CardTableModRefBS might commit the same page twice
ehelin
parents:
diff changeset
    51
}