Skip to content

Commit

Permalink
Disable large Test_LargeFileIntercepts_xxx on windows.
Browse files Browse the repository at this point in the history
It creates intercepts in parallel which causes a race condition when
assigning volumes for remote mounts.

Signed-off-by: Thomas Hallgren <[email protected]>
  • Loading branch information
thallgren committed May 10, 2023
1 parent 56369bf commit ba81802
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions integration_test/large_files_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ func (s *largeFilesSuite) SetupSuite() {
s.T().Skip("Mount tests don't run on darwin due to macFUSE issues")
return
}
if s.IsCI() && goRuntime.GOOS == "windows" {
s.T().Skip("Mount tests don't run on windows due to race condition when assigning drive letters")
return
}
s.Suite.SetupSuite()
ctx := s.Context()
require := s.Require()
Expand Down

0 comments on commit ba81802

Please sign in to comment.