Skip to content

Commit 7a305e8

Browse files
committed
Adjust tests
1 parent 12bbc4e commit 7a305e8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

dd-smoke-tests/crashtracking/src/test/java/datadog/smoketest/CrashtrackingSmokeTest.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
import com.squareup.moshi.JsonAdapter;
1111
import com.squareup.moshi.Moshi;
12+
import datadog.libs.ddprof.DdprofLibraryLoader;
1213
import datadog.trace.api.Platform;
1314
import java.io.File;
1415
import java.io.IOException;
@@ -53,11 +54,10 @@ public class CrashtrackingSmokeTest {
5354
static void setupAll() {
5455
// Only Hotspot based implementation are supported
5556
assumeFalse(Platform.isJ9());
56-
// // Currently, we require the ddprof java library for crash-tracking; bail out if not
57-
// supported
58-
// assumeTrue(
59-
// DdprofLibraryLoader.jvmAccess().getReasonNotLoaded() == null,
60-
// "JVM Access is not available");
57+
// Currently, we require the ddprof java library for crash-tracking; bail out if not supported
58+
assumeTrue(
59+
DdprofLibraryLoader.jvmAccess().getReasonNotLoaded() == null,
60+
"JVM Access is not available");
6161
}
6262

6363
private Path tempDir;

0 commit comments

Comments
 (0)