diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2018-07-27 13:03:27 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2018-07-27 13:48:44 +0200 |
| commit | a43c5ed638567cb01761434ea0c32cfd8b15ca85 (patch) | |
| tree | 5665f01c0fd7c40a923b5b000efce090e2a3cc8e /pkg/csource | |
| parent | 9faf980ad54773c9068a74f42f3d420bc06474dd (diff) | |
pkg/csource: turn off 32-bit tests
Test OS fails the same was as linux on travis.
Diffstat (limited to 'pkg/csource')
| -rw-r--r-- | pkg/csource/csource_test.go | 4 |
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) }) |
