From 0a5156336ed6a810be8fe7f031bc4c67b73ecf43 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 22 Sep 2017 13:18:28 +0200 Subject: [PATCH] pkg/csource: disable linux/386 tests Another attempt to fix travis build. --- pkg/csource/csource_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkg/csource/csource_test.go b/pkg/csource/csource_test.go index be3c4b4c..fac64be8 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)