summaryrefslogtreecommitdiff
path: root/integrationtests/helpers_test.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-12 22:39:06 +0200
committerPaul Buetow <paul@buetow.org>2026-03-12 22:39:06 +0200
commit13e7970afb3eeac69f82df833f030711e5cf12ec (patch)
tree098c4fb8c5a8c8f27547f03f40c9fee0be63fe35 /integrationtests/helpers_test.go
parent1b21e818a69bf73fde3ca60f89d2dc82a79fd605 (diff)
internal: embed BPF object into ior binary
Diffstat (limited to 'integrationtests/helpers_test.go')
-rw-r--r--integrationtests/helpers_test.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/integrationtests/helpers_test.go b/integrationtests/helpers_test.go
index feb7a55..6ef7ba7 100644
--- a/integrationtests/helpers_test.go
+++ b/integrationtests/helpers_test.go
@@ -9,7 +9,6 @@ import (
const (
iorBinaryDefault = "../ior"
workloadBinaryDefault = "../ioworkload"
- bpfObjectDefault = "../ior.bpf.o"
defaultDuration = 10
parallelEnvVar = "IOR_INTEGRATION_PARALLEL"
)
@@ -23,7 +22,6 @@ func newTestHarness(t *testing.T) TestHarness {
return TestHarness{
IorBinary: absPath(t, iorBinaryDefault),
WorkloadBinary: absPath(t, workloadBinaryDefault),
- BpfObject: absPath(t, bpfObjectDefault),
OutputDir: t.TempDir(),
}
}