diff options
Diffstat (limited to 'tests/test_helpers/mount_unmount.go')
-rw-r--r-- | tests/test_helpers/mount_unmount.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_helpers/mount_unmount.go b/tests/test_helpers/mount_unmount.go index 277c8d8..fdb9eb8 100644 --- a/tests/test_helpers/mount_unmount.go +++ b/tests/test_helpers/mount_unmount.go @@ -97,7 +97,7 @@ func Mount(c string, p string, showOutput bool, extraArgs ...string) error { case <-time.After(2 * time.Second): fmt.Printf("Timeout, sending SIGQUIT and SIGKILL") cmd.Process.Signal(syscall.SIGQUIT) - // SIGQUIT should trigger a backtrace. Give it some time to print it. + // SIGQUIT should trigger a backtrace. Give it some time to print time.Sleep(time.Second) cmd.Process.Kill() log.Panicf("Timeout waiting for process %d", pid) |