forked from TrueCloudLab/restic
mount: enable debug log for TestMountSameTimestamps
The test has started to become flaky.
This commit is contained in:
parent
a48baf6f3a
commit
03be64a094
1 changed files with 6 additions and 0 deletions
|
@ -13,6 +13,7 @@ import (
|
|||
"time"
|
||||
|
||||
systemFuse "github.com/anacrolix/fuse"
|
||||
"github.com/restic/restic/internal/debug"
|
||||
"github.com/restic/restic/internal/restic"
|
||||
rtest "github.com/restic/restic/internal/test"
|
||||
)
|
||||
|
@ -205,6 +206,11 @@ func TestMountSameTimestamps(t *testing.T) {
|
|||
t.Skip("Skipping fuse tests")
|
||||
}
|
||||
|
||||
debugEnabled := debug.TestLogToStderr(t)
|
||||
if debugEnabled {
|
||||
defer debug.TestDisableLog(t)
|
||||
}
|
||||
|
||||
env, cleanup := withTestEnvironment(t)
|
||||
// must list snapshots more than once
|
||||
env.gopts.backendTestHook = nil
|
||||
|
|
Loading…
Reference in a new issue