From 019cf5f2356fbadb904bb39993ec9e3adb1999c5 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 13 Dec 2017 13:49:08 +0100 Subject: sys: move test syscalls to a separate target We have them in linux solely for historical reasons. Fixes #462 --- pkg/csource/csource_test.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pkg/csource/csource_test.go') diff --git a/pkg/csource/csource_test.go b/pkg/csource/csource_test.go index 6e79edc43..4aaaa3451 100644 --- a/pkg/csource/csource_test.go +++ b/pkg/csource/csource_test.go @@ -41,6 +41,9 @@ func TestGenerateOne(t *testing.T) { UseTmpDir: true, } for _, target := range prog.AllTargets() { + if target.OS == "test" { + continue + } if target.OS == "fuchsia" { continue // TODO(dvyukov): support fuchsia } -- cgit mrf-deployment