File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
ddprof-test/src/test/java/com/datadoghq/profiler Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ public Stream<TestTemplateInvocationContext> provideTestTemplateInvocationContex
5151 return Stream .of (new ParameterizedTestContext ("no" , retryCount ));
5252 } else {
5353 return Stream .of (valueSource .strings ()).
54- filter (param -> (!Platform .isJ9 () || ! param . startsWith ( "vm" ))).
54+ filter (param -> (!Platform .isJ9 () || "dwarf" . equals ( param ))).
5555 map (param -> new ParameterizedTestContext (param , retryCount ));
5656 }
5757 }
Original file line number Diff line number Diff line change 1616import java .util .concurrent .ExecutionException ;
1717
1818import static org .junit .jupiter .api .Assertions .assertFalse ;
19+ import static org .junit .jupiter .api .Assumptions .assumeFalse ;
1920
2021public class SmokeWallTest extends CStackAwareAbstractProfilerTest {
2122 private ProfiledCode profiledCode ;
You can’t perform that action at this time.
0 commit comments