From 913d592f973a0155647473eaa032711fe956f8a5 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 22 Sep 2017 11:09:53 +0200 Subject: all: more assorted fuchsia support --- pkg/csource/csource_test.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'pkg/csource/csource_test.go') diff --git a/pkg/csource/csource_test.go b/pkg/csource/csource_test.go index 2ac048da2..be3c4b4c4 100644 --- a/pkg/csource/csource_test.go +++ b/pkg/csource/csource_test.go @@ -100,6 +100,10 @@ func TestOne(t *testing.T) { UseTmpDir: true, } for _, target := range prog.AllTargets() { + if target.OS == "fuchsia" { + // TODO(dvyukov): support fuchsia + continue + } target := target t.Run(target.OS+"/"+target.Arch, func(t *testing.T) { if target.OS == "linux" && target.Arch == "arm" { -- cgit mrf-deployment