File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
ddprof-test/src/test/java/com/datadoghq/profiler/wallclock Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 55import com .datadoghq .profiler .context .ContextExecutor ;
66import com .datadoghq .profiler .junit .CStack ;
77import com .datadoghq .profiler .junit .RetryTest ;
8- import org .junit .jupiter .api .Assumptions ;
98import org .junit .jupiter .api .TestTemplate ;
109import org .junit .jupiter .params .provider .ValueSource ;
1110import org .openjdk .jmc .common .item .IItem ;
2120import java .util .concurrent .atomic .AtomicLong ;
2221
2322import static org .junit .jupiter .api .Assertions .assertTrue ;
24- import static org .junit .jupiter .api .Assumptions .assumeFalse ;
25- import static org .junit .jupiter .api .Assumptions .assumeTrue ;
2623
2724
2825public class ContendedWallclockSamplesTest extends CStackAwareAbstractProfilerTest {
@@ -53,7 +50,8 @@ public void after() {
5350 public void test (@ CStack String cstack ) {
5451 // Skip test entirely on unsupported JVMs (don't use assumeFalse which gets retried)
5552 if (Platform .isZing () || Platform .isJ9 () ||
56- (isInCI () && isAsan () && Platform .isGraal () && Platform .isAarch64 () && "vm" .equals (cstack ))) {
53+ (isInCI () && isAsan () && Platform .isGraal () && Platform .isAarch64 () &&
54+ ("vm" .equals (cstack ) || "vmx" .equals (cstack )))) {
5755 return ;
5856 }
5957
You can’t perform that action at this time.
0 commit comments