aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/csource/csource_test.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2018-07-27 13:03:27 +0200
committerDmitry Vyukov <dvyukov@google.com>2018-07-27 13:48:44 +0200
commita43c5ed638567cb01761434ea0c32cfd8b15ca85 (patch)
tree5665f01c0fd7c40a923b5b000efce090e2a3cc8e /pkg/csource/csource_test.go
parent9faf980ad54773c9068a74f42f3d420bc06474dd (diff)
pkg/csource: turn off 32-bit tests
Test OS fails the same was as linux on travis.
Diffstat (limited to 'pkg/csource/csource_test.go')
-rw-r--r--pkg/csource/csource_test.go4
1 files changed, 4 insertions, 0 deletions
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)
})