aboutsummaryrefslogtreecommitdiffstats
path: root/executor
diff options
context:
space:
mode:
Diffstat (limited to 'executor')
-rw-r--r--executor/common.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/executor/common.h b/executor/common.h
index 7d896373f..52f2aeb9b 100644
--- a/executor/common.h
+++ b/executor/common.h
@@ -142,6 +142,8 @@ static uintptr_t execute_syscall(int nr, uintptr_t a0, uintptr_t a1, uintptr_t a
switch (nr) {
default:
return syscall(nr, a0, a1, a2, a3, a4, a5);
+ case __NR_syz_test:
+ return 0;
case __NR_syz_open_dev:
return syz_open_dev(a0, a1, a2);
case __NR_syz_open_pts: