Skip to content

Commit

Permalink
Exclude testSharedCacheJvmtiAPI on AArch64 macOS
Browse files Browse the repository at this point in the history
This commit excludes testSharedCacheJvmtiAPI in extended.functional on
AArch64 macOS for the time being, because it is a JVMTI-related test.

Signed-off-by: KONNO Kazuhiro <konno@jp.ibm.com>
  • Loading branch information
knn-k committed Feb 25, 2022
1 parent 016ce8a commit ec52ed5
Showing 1 changed file with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2010, 2019 IBM Corp. and others
* Copyright (c) 2010, 2022 IBM Corp. and others
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which accompanies this
Expand Down Expand Up @@ -116,7 +116,14 @@ public abstract class TestOptionsBase extends TestOptionsNonpersistent {
public void testVerboseData() { TestVerboseData.main(null); }
public void testVerboseHelper() { TestVerboseHelper.main(null); }
public void testVerboseAOT() { TestVerboseAOT.main(null); }
public void testSharedCacheJvmtiAPI() { TestSharedCacheJvmtiAPI.main(null); }
public void testSharedCacheJvmtiAPI() {
// JVMTI does not fully work on AArch64 macOS yet
// See https://github.com/eclipse-openj9/openj9/issues/14390
String spec = System.getenv("SPEC");
if (!spec.contains("osx_aarch64")) {
TestSharedCacheJvmtiAPI.main(null);
}
}
public void testSharedCacheJavaAPI() { TestSharedCacheJavaAPI.main(null); }
public void testDestroyCache() { TestDestroyCache.main(null); }
public void testExpireDestroyOnCorruptCache() { TestExpireDestroyOnCorruptCache.main(null); }
Expand Down

0 comments on commit ec52ed5

Please sign in to comment.