aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/csource
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2017-09-22 13:18:28 +0200
committerDmitry Vyukov <dvyukov@google.com>2017-09-22 13:18:28 +0200
commit0a5156336ed6a810be8fe7f031bc4c67b73ecf43 (patch)
treef9bd68e00efd58bd0fce98cc2eb0e9e35866e02d /pkg/csource
parent324664de571ae91344a03c3b1412a0db06e5b3b8 (diff)
pkg/csource: disable linux/386 tests
Another attempt to fix travis build.
Diffstat (limited to 'pkg/csource')
-rw-r--r--pkg/csource/csource_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/csource/csource_test.go b/pkg/csource/csource_test.go
index be3c4b4c4..fac64be82 100644
--- a/pkg/csource/csource_test.go
+++ b/pkg/csource/csource_test.go
@@ -112,6 +112,11 @@ func TestOne(t *testing.T) {
// Error: alignment too large: 15 assumed
t.Skip("broken")
}
+ if target.OS == "linux" && target.Arch == "386" {
+ // Currently fails on travis with:
+ // fatal error: asm/unistd.h: No such file or directory
+ t.Skip("broken")
+ }
t.Parallel()
rs := rand.NewSource(0)
p := target.GenerateAllSyzProg(rs)