diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2025-10-06 10:05:15 +0200 |
|---|---|---|
| committer | Aleksandr Nogikh <nogikh@google.com> | 2025-10-06 08:29:04 +0000 |
| commit | c0478890a2483e774aa712cce11dfa0799f92aa5 (patch) | |
| tree | 73f184d20a98d653d68ffea4162632d35b98c2bb /pkg/kfuzztest-manager/manager.go | |
| parent | 49379ee008e5f2af6e551c2e23fcd6b1ebb4d5c2 (diff) | |
kfuzztest: fix build error for non-Linux targets
Fix the following error by only building it for Linux:
package github.com/google/syzkaller/pkg/kfuzztest-manager
imports github.com/google/syzkaller/pkg/kfuzztest-executor:
build constraints exclude all Go files in /syzkaller/gop
ath/src/github.com/google/syzkaller/pkg/kfuzztest-executor
Diffstat (limited to 'pkg/kfuzztest-manager/manager.go')
| -rw-r--r-- | pkg/kfuzztest-manager/manager.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/kfuzztest-manager/manager.go b/pkg/kfuzztest-manager/manager.go index f728230cc..312b496e1 100644 --- a/pkg/kfuzztest-manager/manager.go +++ b/pkg/kfuzztest-manager/manager.go @@ -1,5 +1,8 @@ // Copyright 2025 syzkaller project authors. All rights reserved. // Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. + +//go:build linux + package kfuzztestmanager import ( |
