From a43c5ed638567cb01761434ea0c32cfd8b15ca85 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 27 Jul 2018 13:03:27 +0200 Subject: pkg/csource: turn off 32-bit tests Test OS fails the same was as linux on travis. --- pkg/csource/csource_test.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'pkg/csource/csource_test.go') diff --git a/pkg/csource/csource_test.go b/pkg/csource/csource_test.go index 359c05264..397ba4b28 100644 --- a/pkg/csource/csource_test.go +++ b/pkg/csource/csource_test.go @@ -35,6 +35,10 @@ func TestGenerate(t *testing.T) { // fatal error: asm/unistd.h: No such file or directory t.Skip("broken") } + if target.OS == "test" && target.PtrSize == 4 { + // The same reason as linux/32. + t.Skip("broken") + } t.Parallel() testTarget(t, target) }) -- cgit mrf-deployment