summaryrefslogtreecommitdiff
path: root/integrationtests/cmd/ioworkload/main.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-23 17:27:08 +0200
committerPaul Buetow <paul@buetow.org>2026-02-23 17:27:08 +0200
commitaa19be8c624a6adc3ecbf11a6ee0506a5c7d34fe (patch)
tree6abf6475155980c4c663d04c24ac8f15ca51a166 /integrationtests/cmd/ioworkload/main.go
parent80d68b05199d288df8ccd7a073ac32ebfc90be62 (diff)
Run integration tests in parallel by default and stabilize flaky scenarios
Diffstat (limited to 'integrationtests/cmd/ioworkload/main.go')
-rw-r--r--integrationtests/cmd/ioworkload/main.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/integrationtests/cmd/ioworkload/main.go b/integrationtests/cmd/ioworkload/main.go
index 3ed9cb2..1261c9f 100644
--- a/integrationtests/cmd/ioworkload/main.go
+++ b/integrationtests/cmd/ioworkload/main.go
@@ -11,7 +11,10 @@ import (
"time"
)
-const startupDelay = 2 * time.Second
+// Give ior enough time to attach tracepoints before scenarios emit syscalls.
+// Under parallel integration load, 2s can be too short and cause missed
+// first-call events for single-shot scenarios.
+const startupDelay = 5 * time.Second
func main() {
scenario := flag.String("scenario", "", "I/O scenario to execute")