From 31e83944d0a78e544fe45fb61f21f929607d08e3 Mon Sep 17 00:00:00 2001 From: Alexander Potapenko Date: Thu, 5 Dec 2024 11:21:48 +0100 Subject: executor: add test_syzos() for arm64 Make sure regressions in guest code validation are reported during testing rather than fuzzing. --- executor/test.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'executor/test.h') diff --git a/executor/test.h b/executor/test.h index ba318dece..8997ef52f 100644 --- a/executor/test.h +++ b/executor/test.h @@ -1,7 +1,7 @@ // Copyright 2017 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. -#if GOOS_linux && (GOARCH_amd64 | GOARCH_ppc64 | GOARCH_ppc64le) +#if GOOS_linux && (GOARCH_amd64 || GOARCH_ppc64 || GOARCH_ppc64le || GOARCH_arm64) #include "test_linux.h" #endif @@ -372,8 +372,11 @@ static struct { {"test_copyin", test_copyin}, {"test_csum_inet", test_csum_inet}, {"test_csum_inet_acc", test_csum_inet_acc}, -#if GOOS_linux && (GOARCH_amd64 || GOARCH_ppc64 || GOARCH_ppc64le) +#if GOOS_linux && (GOARCH_amd64 || GOARCH_ppc64 || GOARCH_ppc64le || GOARCH_arm64) {"test_kvm", test_kvm}, +#endif +#if GOOS_linux && GOARCH_arm64 + {"test_syzos", test_syzos}, #endif {"test_cover_filter", test_cover_filter}, {"test_glob", test_glob}, -- cgit mrf-deployment