Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exclude testSharedCacheJvmtiAPI on AArch64 macOS #14591

Merged
merged 1 commit into from
Feb 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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