From 712bfcbdd8558eb5d07d924ab53d1ac564ebcfd4 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 21 May 2019 12:35:51 +0200 Subject: pkg/runtest: test host.Setup This would catch binfmt_misc breakage on non-linux. --- pkg/host/host.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/host') diff --git a/pkg/host/host.go b/pkg/host/host.go index 972656ad7..a89a90e42 100644 --- a/pkg/host/host.go +++ b/pkg/host/host.go @@ -111,7 +111,7 @@ func Check(target *prog.Target) (*Features, error) { // Setup enables and does any one-time setup for the requested features on the host. // Note: this can be called multiple times and must be idempotent. func Setup(target *prog.Target, features *Features, featureFlags csource.Features, executor string) error { - if target.OS == "akaros" || target.OS == "test" { + if target.OS == "akaros" { return nil } args := []string{"setup"} -- cgit mrf-deployment