From a7383bfac17332db9afdad436b6c06c48bfe4815 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 7 May 2019 14:14:38 +0200 Subject: Makefile: enable 386 executor build in presubmit This hacky way to install 386 packages seems to unbreak executor build. --- pkg/csource/csource_test.go | 5 ----- 1 file changed, 5 deletions(-) (limited to 'pkg/csource/csource_test.go') diff --git a/pkg/csource/csource_test.go b/pkg/csource/csource_test.go index fcdee889f..592f4fe19 100644 --- a/pkg/csource/csource_test.go +++ b/pkg/csource/csource_test.go @@ -27,11 +27,6 @@ func TestGenerate(t *testing.T) { continue } t.Run(target.OS+"/"+target.Arch, func(t *testing.T) { - 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") - } if target.OS == "linux" && target.Arch == "arm64" { // Episodically fails on travis with: // collect2: error: ld terminated with signal 11 [Segmentation fault] -- cgit mrf-deployment