test/hotspot/jtreg/gc/g1/TestStringDeduplicationTableRehash.java
author kkharbas
Wed, 29 Nov 2017 17:03:10 -0800
changeset 48153 cfa2c43e58c2
parent 47216 71c04702a3d5
child 53523 4c5184c56dc2
permissions -rw-r--r--
8190308: Implementation: JEP 316: Heap Allocation on Alternative Memory Devices Summary: Sub-task to be used for implementation of JEP 316: Support heap allocation on alternative memory devices Reviewed-by: sangheki, tschatzl
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
23472
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
     1
/*
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 36851
diff changeset
     2
 * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
23472
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
     4
 *
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
     7
 * published by the Free Software Foundation.
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
     8
 *
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    13
 * accompanied this code).
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    14
 *
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    18
 *
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    21
 * questions.
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    22
 */
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    23
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    24
/*
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    25
 * @test TestStringDeduplicationTableRehash
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    26
 * @summary Test string deduplication table rehash
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    27
 * @bug 8029075
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    28
 * @key gc
40886
98cb935dc074 8164660: MinimalVM is not tested with GC tests
dfazunen
parents: 40631
diff changeset
    29
 * @requires vm.gc.G1
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 36851
diff changeset
    30
 * @library /test/lib
42307
cefc81dc1d52 8169069: Module system implementation refresh (11/2016)
alanb
parents: 40886
diff changeset
    31
 * @modules java.base/jdk.internal.misc:open
cefc81dc1d52 8169069: Module system implementation refresh (11/2016)
alanb
parents: 40886
diff changeset
    32
 * @modules java.base/java.lang:open
29678
dd2f3932c21e 8075586: Add @modules as needed to the open hotspot tests
ykantser
parents: 23472
diff changeset
    33
 *          java.management
23472
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    34
 */
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    35
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    36
public class TestStringDeduplicationTableRehash {
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    37
    public static void main(String[] args) throws Exception {
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    38
        TestStringDeduplicationTools.testTableRehash();
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    39
    }
35e93890ed88 8029075: String deduplication in G1
pliden
parents:
diff changeset
    40
}