diff options
| author | Paul Buetow <paul@buetow.org> | 2026-05-27 21:57:37 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-05-27 21:57:37 +0300 |
| commit | 99e99c6ea35ae97e84d727449f9ad7c4c0a9fa23 (patch) | |
| tree | a5c690689719687716186de08f2085352461d2b4 /integrationtests/family_test.go | |
| parent | 45e02c6754dbc8217713d81d792bfc83e8523505 (diff) | |
Stabilize integration test startup
Diffstat (limited to 'integrationtests/family_test.go')
| -rw-r--r-- | integrationtests/family_test.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/integrationtests/family_test.go b/integrationtests/family_test.go index 7558bfa..bfb0cf6 100644 --- a/integrationtests/family_test.go +++ b/integrationtests/family_test.go @@ -15,10 +15,12 @@ const ( familyWorkloadStartupEnv = "IOR_WORKLOAD_STARTUP_DELAY_MS=1000" ) +var familyMixedTraceArgs = []string{"-trace-syscalls", "openat,write,mmap,munmap,pipe2,socketpair,getpid,sched_yield,nanosleep"} + func TestFamilyParquetRecordingAndAggregation(t *testing.T) { h := newTestHarness(t) h.WorkloadEnv = []string{familyWorkloadStartupEnv} - path, pid, err := h.RunParquet("family-mixed", familyParquetDuration) + path, pid, err := h.RunParquetWithIorArgs("family-mixed", familyParquetDuration, familyMixedTraceArgs) if err != nil { t.Fatalf("run family-mixed parquet scenario: %v", err) } @@ -54,7 +56,7 @@ func TestFamilyParquetRecordingAndAggregation(t *testing.T) { } for syscall := range expectedSyscallFamilies { if !seenSyscalls[syscall] { - t.Fatalf("expected traced syscall %q in parquet rows", syscall) + t.Fatalf("expected traced syscall %q in parquet rows; saw syscalls: %+v", syscall, seenSyscalls) } } |
