Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions internal/integration/sessions_mongocryptd_prose_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import (
"net"
"net/url"
"os/exec"
"runtime"
"strconv"
"testing"

Expand Down Expand Up @@ -118,6 +119,12 @@ func TestSessionsMongocryptdProse(t *testing.T) {
// test and configure it to control server versions.
mt := mtest.New(t, mtOpts)

// TODO(GODRIVER-3529): 'TerminateProcess: Access is denied' error when
// killing mongocryptd process on Windows. It's unclear what is causing this.
if runtime.GOOS == "windows" {
mt.Skip("skipping to avoid 'TerminateProcess: Access is denied' error when killing mongocryptd process")
}

proseTest18 := "18. implicit session is ignored if connection does not support sessions"
mt.RunOpts(proseTest18, mtOpts, func(mt *mtest.T) {
client := newTestSessionMongocryptdProseClient(mt)
Expand Down
Loading