< prev index next >

test/hotspot/jtreg/gc/TestNUMAPageSize.java

Print this page
rev 51377 : 8061467: Add UseLargePages to TestNUMAPageSize
Summary: Add flag to test for all architectures to be tested
Reviewed-by: phh, tschatzl


  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 TestNUMAPageSize
  26  * @key gc regression
  27  * @summary Make sure that start up with NUMA support does not cause problems.
  28  * @bug 8061467
  29  * @requires vm.opt.AggressiveOpts != true
  30  * @run main/othervm -Xmx128m -XX:+UseNUMA TestNUMAPageSize

  31  */
  32 
  33 public class TestNUMAPageSize {
  34   public static void main(String args[]) throws Exception {
  35     // nothing to do
  36   }
  37 }


  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 TestNUMAPageSize
  26  * @key gc regression
  27  * @summary Make sure that start up with NUMA support does not cause problems.
  28  * @bug 8061467
  29  * @requires vm.opt.AggressiveOpts != true
  30  * @requires vm.gc != "Z"
  31  * @run main/othervm -Xmx128m -XX:+UseNUMA -XX:+UseLargePages TestNUMAPageSize
  32  */
  33 
  34 public class TestNUMAPageSize {
  35   public static void main(String args[]) throws Exception {
  36     // nothing to do
  37   }
  38 }
< prev index next >