From c0478890a2483e774aa712cce11dfa0799f92aa5 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Mon, 6 Oct 2025 10:05:15 +0200 Subject: 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 --- syz-kfuzztest/main.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'syz-kfuzztest') diff --git a/syz-kfuzztest/main.go b/syz-kfuzztest/main.go index e46ecc257..b81a9ef92 100644 --- a/syz-kfuzztest/main.go +++ b/syz-kfuzztest/main.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 main import ( -- cgit mrf-deployment