aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/compilers/go/skip-test-extra-files-on-386.patch
blob: afe5aea3d9161c42493463a90dd870d62f212cf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/src/os/exec/exec_test.go b/src/os/exec/exec_test.go
index 558345ff63..22129bf022 100644
--- a/src/os/exec/exec_test.go
+++ b/src/os/exec/exec_test.go
@@ -593,6 +593,10 @@ func TestExtraFiles(t *testing.T) {
 		t.Skipf("skipping test on %q", runtime.GOOS)
 	}
 
+	if runtime.GOOS == "linux" && runtime.GOARCH  == "386" {
+		t.Skipf("skipping test on %q %q", runtime.GOARCH, runtime.GOOS)
+	}
+
 	// Ensure that file descriptors have not already been leaked into
 	// our environment.
 	if !testedAlreadyLeaked {