From 0ee915a4b77193b4191d2d6d0193ead51638ed67 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sat, 16 May 2020 14:02:18 +0200 Subject: pkg/runtest: disable broken test combinations Amusingly this was always broken but nobody was ever able to compile 32-bit binaries on Linux since the addition of the tests. --- pkg/runtest/run.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pkg') diff --git a/pkg/runtest/run.go b/pkg/runtest/run.go index 7c2b1e6a4..39d65b245 100644 --- a/pkg/runtest/run.go +++ b/pkg/runtest/run.go @@ -190,7 +190,8 @@ func (ctx *Context) generatePrograms(progs chan *RunRequest) error { } } properties := map[string]bool{ - "sandbox=" + sandbox: true, + "arch=" + ctx.Target.Arch: true, + "sandbox=" + sandbox: true, } for _, threaded := range []bool{false, true} { name := name -- cgit mrf-deployment