File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import (
1212 "net"
1313 "net/url"
1414 "os/exec"
15+ "runtime"
1516 "strconv"
1617 "testing"
1718
@@ -118,6 +119,12 @@ func TestSessionsMongocryptdProse(t *testing.T) {
118119 // test and configure it to control server versions.
119120 mt := mtest .New (t , mtOpts )
120121
122+ // TODO(GODRIVER-3529): 'TerminateProcess: Access is denied' error when
123+ // killing mongocryptd process on Windows. It's unclear what is causing this.
124+ if runtime .GOOS == "windows" {
125+ mt .Skip ("skipping to avoid 'TerminateProcess: Access is denied' error when killing mongocryptd process" )
126+ }
127+
121128 proseTest18 := "18. implicit session is ignored if connection does not support sessions"
122129 mt .RunOpts (proseTest18 , mtOpts , func (mt * mtest.T ) {
123130 client := newTestSessionMongocryptdProseClient (mt )
You can’t perform that action at this time.
0 commit comments