From 6ea8920dac3b7e3868707a84e58a5d7e10ebbbf3 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Tue, 24 Feb 2026 21:19:09 +0200 Subject: flamegraph: remove external tool path and document native generation --- integrationtests/cleanup_test.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'integrationtests') diff --git a/integrationtests/cleanup_test.go b/integrationtests/cleanup_test.go index 6fecd10..18a0531 100644 --- a/integrationtests/cleanup_test.go +++ b/integrationtests/cleanup_test.go @@ -55,7 +55,7 @@ func TestCleanupOutputDirContainsOnlyExpectedFiles(t *testing.T) { workloadBin := writeScript(t, tmpDir, "workload", `echo $$`) iorBin := writeScript(t, tmpDir, "ior", - `touch test.ior.zst test.collapsed.zst test.svg`) + `touch test.ior.zst test.svg`) h := TestHarness{ IorBinary: iorBin, @@ -80,7 +80,6 @@ func TestCleanupOutputDirContainsOnlyExpectedFiles(t *testing.T) { for _, e := range entries { name := e.Name() validSuffix := strings.HasSuffix(name, ".ior.zst") || - strings.HasSuffix(name, ".collapsed.zst") || strings.HasSuffix(name, ".svg") || name == "ior.bpf.o" // symlink created by startIor if !validSuffix { @@ -204,7 +203,6 @@ func TestCleanupNoArtifactsOutsideOutputDir(t *testing.T) { } for _, e := range entries { if strings.HasSuffix(e.Name(), ".ior.zst") || - strings.HasSuffix(e.Name(), ".collapsed.zst") || strings.HasSuffix(e.Name(), ".svg") { t.Errorf("artifact leaked to script dir: %s", e.Name()) } -- cgit v1.2.3