aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRahul Bajaj <rahulrb0509@gmail.com>2021-06-15 13:23:10 +0000
committerIan Lance Taylor <iant@golang.org>2021-06-21 22:46:57 +0000
commitfd129a6b0e6041da048b845e966be94bd718b9aa (patch)
tree7789a87d7781264beda8d90b860e9444f2ed8174
parent7677616a263e8ded606cc8297cb67ddc667a876e (diff)
downloadgo-fd129a6b0e6041da048b845e966be94bd718b9aa.tar.gz
go-fd129a6b0e6041da048b845e966be94bd718b9aa.zip
[release-branch.go1.16] syscall: fix TestGroupCleanupUserNamespace test failure on Fedora
For #46752 Fixes #46769 Change-Id: I2eaa9d15fac4e859e18191fcf1372e5be94899df GitHub-Last-Rev: 8a2672d8dc6713ec6cbd207d870e893062c8fe5b GitHub-Pull-Request: golang/go#46753 Reviewed-on: https://go-review.googlesource.com/c/go/+/328109 Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org> Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com> (cherry picked from commit a752bc07462f01a4c1ee1940c3ea316b270af146) Reviewed-on: https://go-review.googlesource.com/c/go/+/329831 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org>
-rw-r--r--src/syscall/exec_linux_test.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/syscall/exec_linux_test.go b/src/syscall/exec_linux_test.go
index ac3a5754ae..181fb1e849 100644
--- a/src/syscall/exec_linux_test.go
+++ b/src/syscall/exec_linux_test.go
@@ -317,6 +317,7 @@ func TestGroupCleanupUserNamespace(t *testing.T) {
"uid=0(root) gid=0(root) groups=0(root),65534",
"uid=0(root) gid=0(root) groups=0(root),65534(nobody),65534(nobody),65534(nobody),65534(nobody),65534(nobody),65534(nobody),65534(nobody),65534(nobody),65534(nobody),65534(nobody)", // Alpine; see https://golang.org/issue/19938
"uid=0(root) gid=0(root) groups=0(root) context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023", // CentOS with SELinux context, see https://golang.org/issue/34547
+ "uid=0(root) gid=0(root) groups=0(root),65534(nobody) context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023", // Fedora with SElinux context, see https://golang.org/issue/46752
}
for _, e := range expected {
if strOut == e {