Skip to content

Commit

Permalink
8270357: [lworld] some jtreg tests disabled on AArch64
Browse files Browse the repository at this point in the history
Reviewed-by: thartmann
  • Loading branch information
nick-arm authored and TobiHartmann committed Jul 26, 2021
1 parent ad0491e commit 46b88b5
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
Expand Up @@ -36,7 +36,7 @@
* @key randomness
* @summary Test the basic inline type implementation in C2
*
* @requires os.simpleArch == "x64"
* @requires (os.simpleArch == "x64" | os.simpleArch == "aarch64")
* @library /test/lib /
* @compile InlineTypes.java
* @run driver/timeout=300 compiler.valhalla.inlinetypes.TestBasicFunctionality
Expand Down
Expand Up @@ -37,7 +37,7 @@
* @key randomness
* @summary Various tests that are specific for C1.
* @library /test/lib /
* @requires os.simpleArch == "x64"
* @requires (os.simpleArch == "x64" | os.simpleArch == "aarch64")
* @compile -XDallowWithFieldOperator TestC1.java
* @run driver/timeout=300 compiler.valhalla.inlinetypes.TestC1
*/
Expand Down
Expand Up @@ -35,7 +35,7 @@
* @key randomness
* @summary Verify that chains of getfields on flattened fields are correctly optimized
* @library /test/lib /
* @requires os.simpleArch == "x64"
* @requires (os.simpleArch == "x64" | os.simpleArch == "aarch64")
* @compile GetfieldChains.jcod
* @run driver/timeout=300 compiler.valhalla.inlinetypes.TestGetfieldChains
*/
Expand Down
Expand Up @@ -37,7 +37,7 @@
* @key randomness
* @summary Test inline type specific profiling
* @library /test/lib /
* @requires (os.simpleArch == "x64")
* @requires (os.simpleArch == "x64" | os.simpleArch == "aarch64")
* @run driver/timeout=300 compiler.valhalla.inlinetypes.TestLWorldProfiling
*/

Expand Down
Expand Up @@ -40,7 +40,7 @@
* @key randomness
* @summary Test method handle support for inline types
* @library /test/lib /
* @requires os.simpleArch == "x64"
* @requires (os.simpleArch == "x64" | os.simpleArch == "aarch64")
* @run driver/timeout=300 compiler.valhalla.inlinetypes.TestMethodHandles
*/

Expand Down
Expand Up @@ -31,7 +31,7 @@
* @key randomness
* @summary Verify that C1 performs escape analysis before optimizing withfield bytecode to putfield.
* @library /test/lib /
* @requires os.simpleArch == "x64"
* @requires (os.simpleArch == "x64" | os.simpleArch == "aarch64")
* @compile -XDallowWithFieldOperator TestWithfieldC1.java
* @run driver/timeout=300 compiler.valhalla.inlinetypes.TestWithfieldC1
*/
Expand Down
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -29,7 +29,7 @@
* @test
* @summary Test JNI IsSameObject semantic with inline types
* @library /testlibrary /test/lib
* @requires (os.simpleArch == "x64")
* @requires (os.simpleArch == "x64" | os.simpleArch == "aarch64")
* @requires (os.family == "linux" | os.family == "mac")
* @run main/othervm/native TestJNIIsSameObject
*/
Expand Down

0 comments on commit 46b88b5

Please sign in to comment.