about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/compilers/go/creds-test-1.4.patch
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/compilers/go/creds-test-1.4.patch')
-rw-r--r--nixpkgs/pkgs/development/compilers/go/creds-test-1.4.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/nixpkgs/pkgs/development/compilers/go/creds-test-1.4.patch b/nixpkgs/pkgs/development/compilers/go/creds-test-1.4.patch
deleted file mode 100644
index 98cec532dcca..000000000000
--- a/nixpkgs/pkgs/development/compilers/go/creds-test-1.4.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff --git a/go-go1.4.3/src/syscall/creds_test.go b/go-go1.4.3/src/syscall/creds_test.go
-index b1894c6..b2d6b4e 100644
---- a/src/syscall/creds_test.go
-+++ b/src/syscall/creds_test.go
-@@ -56,9 +56,10 @@ func TestSCMCredentials(t *testing.T) {
- 		ucred.Gid = 0
- 		oob := syscall.UnixCredentials(&ucred)
- 		_, _, err := cli.(*net.UnixConn).WriteMsgUnix(nil, oob, nil)
--		if err.(*net.OpError).Err != syscall.EPERM {
--			t.Fatalf("WriteMsgUnix failed with %v, want EPERM", err)
-+		if err.(*net.OpError).Err != syscall.EPERM && err.(*net.OpError).Err != syscall.EINVAL {
-+			t.Fatalf("WriteMsgUnix failed with %v, want EPERM or EINVAL", err)
- 		}
-+
- 	}
-
- 	ucred.Pid = int32(os.Getpid())