You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mongo/integration/unified/unified_spec_runner.go
+13-3
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,7 @@ import (
10
10
"context"
11
11
"fmt"
12
12
"io/ioutil"
13
+
"os"
13
14
"path"
14
15
"strings"
15
16
"testing"
@@ -23,7 +24,7 @@ import (
23
24
)
24
25
25
26
var (
26
-
skippedTestDescriptions=map[string]string{
27
+
skippedTests=map[string]string{
27
28
// GODRIVER-1773: This test runs a "find" with limit=4 and batchSize=3. It expects batchSize values of three for
28
29
// the "find" and one for the "getMore", but we send three for both.
29
30
"A successful find event with a getmore and the server kills the cursor (<= 4.4)": "See GODRIVER-1773",
@@ -68,6 +69,10 @@ var (
68
69
"operation is retried multiple times for non-zero timeoutMS - aggregate on database": "maxTimeMS is disabled on find and aggregate. See DRIVERS-2722.",
69
70
}
70
71
72
+
skippedServerlessProxyTests=map[string]string{
73
+
"errors during the initial connection hello are ignored": "Serverless Proxy does not support failpoints on hello (see GODRIVER-3157)",
0 commit comments