summaryrefslogtreecommitdiff
path: root/integrationtests
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-24 21:19:09 +0200
committerPaul Buetow <paul@buetow.org>2026-02-24 21:19:09 +0200
commit6ea8920dac3b7e3868707a84e58a5d7e10ebbbf3 (patch)
tree63138d32b6197522855a0b69e3c09068a0e1df41 /integrationtests
parent93d587a6f5ae453907de3d5556866b60bac405cb (diff)
flamegraph: remove external tool path and document native generation
Diffstat (limited to 'integrationtests')
-rw-r--r--integrationtests/cleanup_test.go4
1 files changed, 1 insertions, 3 deletions
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())
}