From 99e99c6ea35ae97e84d727449f9ad7c4c0a9fa23 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Wed, 27 May 2026 21:57:37 +0300 Subject: Stabilize integration test startup --- integrationtests/process_test.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'integrationtests/process_test.go') 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", -- cgit v1.2.3