summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--WORKSPACE4
-rw-r--r--nogo.yaml3
-rw-r--r--test/packetimpact/testbench/dut_client.go2
3 files changed, 6 insertions, 3 deletions
diff --git a/WORKSPACE b/WORKSPACE
index 30d21e472..57904e994 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -482,8 +482,8 @@ go_repository(
go_repository(
name = "co_honnef_go_tools",
importpath = "honnef.co/go/tools",
- sum = "h1:3JgtbtFHMiCmsznwGVTUWbgGov+pVqnlf1dEJTNAXeM=",
- version = "v0.0.1-2019.2.3",
+ sum = "h1:W18jzjh8mfPez+AwGLxmOImucz/IFjpNlrKVnaj2YVc=",
+ version = "v0.0.1-2020.1.6",
)
go_repository(
diff --git a/nogo.yaml b/nogo.yaml
index 07fd9aa4d..595308103 100644
--- a/nogo.yaml
+++ b/nogo.yaml
@@ -32,6 +32,8 @@ global:
# go_embed_data rules generate unicode literals.
- "string literal contains the Unicode format character"
- "string literal contains the Unicode control character"
+ - "string literal contains Unicode control characters"
+ - "string literal contains Unicode format and control characters"
# Some external code will generate protov1
# implementations. These should be ignored.
- "proto.* is deprecated"
@@ -101,6 +103,7 @@ global:
- pkg/sentry/fs/dev/net_tun.go:63
- pkg/sentry/fs/dev/null.go:97
- pkg/sentry/fs/dirent_cache.go:64
+ - pkg/sentry/fs/fdpipe/pipe_opener_test.go:366
- pkg/sentry/fs/file_overlay.go:327
- pkg/sentry/fs/file_overlay.go:524
- pkg/sentry/fs/filetest/filetest.go:55
diff --git a/test/packetimpact/testbench/dut_client.go b/test/packetimpact/testbench/dut_client.go
index d0e68c5da..0fc3d97b4 100644
--- a/test/packetimpact/testbench/dut_client.go
+++ b/test/packetimpact/testbench/dut_client.go
@@ -19,7 +19,7 @@ import (
pb "gvisor.dev/gvisor/test/packetimpact/proto/posix_server_go_proto"
)
-// PosixClient is a gRPC client for the Posix service.
+// POSIXClient is a gRPC client for the Posix service.
type POSIXClient pb.PosixClient
// NewPOSIXClient makes a new gRPC client for the POSIX service.