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 (
12
12
"net"
13
13
"net/url"
14
14
"os/exec"
15
+ "runtime"
15
16
"strconv"
16
17
"testing"
17
18
@@ -118,6 +119,12 @@ func TestSessionsMongocryptdProse(t *testing.T) {
118
119
// test and configure it to control server versions.
119
120
mt := mtest .New (t , mtOpts )
120
121
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
+
121
128
proseTest18 := "18. implicit session is ignored if connection does not support sessions"
122
129
mt .RunOpts (proseTest18 , mtOpts , func (mt * mtest.T ) {
123
130
client := newTestSessionMongocryptdProseClient (mt )
You can’t perform that action at this time.
0 commit comments