Skip to content

Commit 8091907

Browse files
committed
skip Hyper-V mount details check
1 parent 97654d4 commit 8091907

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/integration/mount_start_test.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,10 @@ func validateMount(ctx context.Context, t *testing.T, profile string) {
121121
t.Errorf("wanted mode to be %q; got: %q", want, rr.Output())
122122
}
123123

124-
// give time for 9P process to be listed as running on Windows
125-
time.Sleep(5 * time.Second)
124+
// We can't get the mount details with Hyper-V
125+
if HyperVDriver() {
126+
return
127+
}
126128

127129
args = sshArgs
128130
args = append(args, "mount", "|", "grep", "9p")

0 commit comments

Comments
 (0)