Skip to content

Commit

Permalink
Test only dwarf cstack on J9
Browse files Browse the repository at this point in the history
  • Loading branch information
jbachorik committed Feb 18, 2025
1 parent 7ba5aa5 commit 8c91f53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public Stream<TestTemplateInvocationContext> provideTestTemplateInvocationContex
return Stream.of(new ParameterizedTestContext("no", retryCount));
} else {
return Stream.of(valueSource.strings()).
filter(param -> (!Platform.isJ9() || !param.startsWith("vm"))).
filter(param -> (!Platform.isJ9() || "dwarf".equals(param))).
map(param -> new ParameterizedTestContext(param, retryCount));
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import java.util.concurrent.ExecutionException;

import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assumptions.assumeFalse;

public class SmokeWallTest extends CStackAwareAbstractProfilerTest {
private ProfiledCode profiledCode;
Expand Down

0 comments on commit 8c91f53

Please sign in to comment.