diff options
author | Fabricio Voznika <fvoznika@google.com> | 2019-10-18 16:13:04 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-10-18 16:18:52 -0700 |
commit | 74044f2cca498ed3144baccc5d3b7af534829966 (patch) | |
tree | f00ee3917c93db767b62a44fea4a4f7674719b18 /test/e2e/exec_test.go | |
parent | 51538c973e4044308833d55641e57da0e1a14b62 (diff) |
Add more instructions to test/README.md
PiperOrigin-RevId: 275565958
Diffstat (limited to 'test/e2e/exec_test.go')
-rw-r--r-- | test/e2e/exec_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/exec_test.go b/test/e2e/exec_test.go index c962a3159..4074d2285 100644 --- a/test/e2e/exec_test.go +++ b/test/e2e/exec_test.go @@ -109,7 +109,7 @@ func TestExecPrivileged(t *testing.T) { t.Logf("Exec CapEff: %v", got) want := fmt.Sprintf("CapEff:\t%016x\n", specutils.AllCapabilitiesUint64()&^bits.MaskOf64(int(linux.CAP_NET_RAW))) if got != want { - t.Errorf("wrong capabilities, got: %q, want: %q", got, want) + t.Errorf("Wrong capabilities, got: %q, want: %q. Make sure runsc is not using '--net-raw'", got, want) } } |