Skip to content
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
Expand Up @@ -495,6 +495,12 @@ void testBogusApiKey(final TestInfo testInfo) throws Exception {
@DisplayName("Test wallclock profiling without tracing")
public void testWallclockProfilingWithoutTracing(final TestInfo testInfo) throws Exception {
Assumptions.assumeTrue(OperatingSystem.isLinux());
// TODO: Exclude the test on Oracle JDK 8 - the JMC parser in the test runner
// is having troubles reading the generated JFR file; however, when downloaded
// and opened locally, JMC will read it just fine.
// We will need to investigate the root cause, but now we need to unblock the master
// builds
Assumptions.assumeFalse(JavaVirtualMachine.isOracleJDK8());
testWithRetry(
() -> {
try {
Expand Down