summaryrefslogtreecommitdiff
path: root/integrationtests/process_test.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-05-27 21:57:37 +0300
committerPaul Buetow <paul@buetow.org>2026-05-27 21:57:37 +0300
commit99e99c6ea35ae97e84d727449f9ad7c4c0a9fa23 (patch)
treea5c690689719687716186de08f2085352461d2b4 /integrationtests/process_test.go
parent45e02c6754dbc8217713d81d792bfc83e8523505 (diff)
Stabilize integration test startup
Diffstat (limited to 'integrationtests/process_test.go')
-rw-r--r--integrationtests/process_test.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/integrationtests/process_test.go b/integrationtests/process_test.go
index e9cd739..291187d 100644
--- a/integrationtests/process_test.go
+++ b/integrationtests/process_test.go
@@ -2,8 +2,10 @@ package integrationtests
import "testing"
+var processExecTraceArgs = []string{"-trace-syscalls", "execve,execveat"}
+
func TestProcessExecLifecycle(t *testing.T) {
- result, _ := runScenarioResult(t, "process-exec-lifecycle", []ExpectedEvent{
+ result, _ := runScenarioResultWithIorArgs(t, "process-exec-lifecycle", []ExpectedEvent{
{
Tracepoint: "enter_execve",
PathContains: "ior-missing-execve-only",
@@ -16,7 +18,7 @@ func TestProcessExecLifecycle(t *testing.T) {
Comm: "ioworkload",
MinCount: 1,
},
- })
+ }, processExecTraceArgs)
assertEventDurationPositive(t, result, ExpectedEvent{
Tracepoint: "enter_execve",