From 87ed55f3f6a1c62d477212cfd6fac938c783f32b Mon Sep 17 00:00:00 2001 From: r1viollet Date: Tue, 8 Jul 2025 11:57:24 +0200 Subject: [PATCH] Fix flaky allocation test Lower threshold for allocation test --- .../com/datadoghq/profiler/jfr/ObjectSampleDumpSmokeTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddprof-test/src/test/java/com/datadoghq/profiler/jfr/ObjectSampleDumpSmokeTest.java b/ddprof-test/src/test/java/com/datadoghq/profiler/jfr/ObjectSampleDumpSmokeTest.java index 8582783ac..c7196e4a7 100644 --- a/ddprof-test/src/test/java/com/datadoghq/profiler/jfr/ObjectSampleDumpSmokeTest.java +++ b/ddprof-test/src/test/java/com/datadoghq/profiler/jfr/ObjectSampleDumpSmokeTest.java @@ -15,7 +15,7 @@ protected boolean isPlatformSupported() { @Override protected String getProfilerCommand() { - return "memory=128:a"; + return "memory=32:a"; } @RetryingTest(5)