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/mountfs_test.go | |
| parent | 45e02c6754dbc8217713d81d792bfc83e8523505 (diff) | |
Stabilize integration test startup
Diffstat (limited to 'integrationtests/mountfs_test.go')
| -rw-r--r-- | integrationtests/mountfs_test.go | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/integrationtests/mountfs_test.go b/integrationtests/mountfs_test.go index 77f0009..ff783e7 100644 --- a/integrationtests/mountfs_test.go +++ b/integrationtests/mountfs_test.go @@ -2,8 +2,13 @@ package integrationtests import "testing" +var mountfsTraceArgs = []string{ + "-trace-syscalls", + "mount,umount,move_mount,fsmount,pivot_root,quotactl,statmount,listmount,listns,swapon,swapoff", +} + func TestMountFsManagementSyscalls(t *testing.T) { - runScenario(t, "mountfs-management", []ExpectedEvent{ + runScenarioResultWithIorArgs(t, "mountfs-management", []ExpectedEvent{ {Tracepoint: "enter_mount", MinCount: 1}, {Tracepoint: "enter_umount", MinCount: 1}, {Tracepoint: "enter_move_mount", MinCount: 1}, @@ -15,5 +20,5 @@ func TestMountFsManagementSyscalls(t *testing.T) { {Tracepoint: "enter_listns", MinCount: 1}, {Tracepoint: "enter_swapon", MinCount: 1}, {Tracepoint: "enter_swapoff", MinCount: 1}, - }) + }, mountfsTraceArgs) } |
