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: tests/simple/simple_test.go
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,7 @@ var (
49
49
flagSkipCheckbool
50
50
flagSkipTestsstringArray
51
51
flagPipebool
52
+
flagPipePingsbool
52
53
flagPipeBase64bool
53
54
rc*runConfig
54
55
)
@@ -62,7 +63,8 @@ func init() {
62
63
flag.BoolVar(&flagSkipCheck, "skip_check", false, "force skipping the check phase")
63
64
flag.Var(&flagSkipTests, "skip_test", "name(s) of tests to skip. can be set multiple times. to skip the following tests: f1/s1/t1, f1/s1/t2, f1/s2/*, f2/s3/t3, you give the arguments --skip_test=f1/s1/t1,t2;s2 --skip_test=f2/s3/t3")
64
65
flag.BoolVar(&flagPipe, "pipe", false, "Use pipes instead of gRPC")
65
-
flag.BoolVar(&flagPipeBase64, "pipe_base64", false, "Use base64 encoded wire format proto in pipes (default JSON).")
66
+
flag.BoolVar(&flagPipeBase64, "pipe_base64", true, "Use base64 encoded wire format proto in pipes (if disabled, use JSON).")
67
+
flag.BoolVar(&flagPipePings, "pipe_pings", false, "Enable pinging pipe client to subprocess status.")
0 commit comments