diff --git a/test/integration/functional_test_mount_test.go b/test/integration/functional_test_mount_test.go index 66941ae8d1..25619159a3 100644 --- a/test/integration/functional_test_mount_test.go +++ b/test/integration/functional_test_mount_test.go @@ -50,16 +50,8 @@ func validateMountCmd(ctx context.Context, t *testing.T, profile string) { // no if NoneDriver() { t.Skip("skipping: none driver does not support mount") } - if HyperVDriver() { - t.Skip("skipping: mount broken on hyperv: https://github.com/kubernetes/minikube/issues/5029") - } - - if runtime.GOOS == "windows" { - t.Skip("skipping: mount broken on windows: https://github.com/kubernetes/minikube/issues/8303") - } t.Run("any-port", func(t *testing.T) { - t.Skip("Skipping until https://github.com/kubernetes/minikube/issues/12301 is resolved.") tempDir, err := os.MkdirTemp("", "mounttest") defer func() { // clean up tempdir err := os.RemoveAll(tempDir) diff --git a/third_party/go9p/srv_fcall.go b/third_party/go9p/srv_fcall.go index c25d9dc14f..3f72c8eace 100644 --- a/third_party/go9p/srv_fcall.go +++ b/third_party/go9p/srv_fcall.go @@ -193,12 +193,6 @@ func (srv *Srv) walk(req *SrvReq) { return } - /* we can't walk open files */ - if fid.opened { - req.RespondError(Ebaduse) - return - } - if tc.Fid != tc.Newfid { req.Newfid = conn.FidNew(tc.Newfid) if req.Newfid == nil {