Skip to content

Commit 3008766

Browse files
Skip TestSessionsMongocryptdProse on windows (#2011)
1 parent cd295b6 commit 3008766

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

internal/integration/sessions_mongocryptd_prose_test.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)