From 75eae5a7ef67781b73f2b9038416542c7ea0612c Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 7 Sep 2022 16:37:17 +0200 Subject: executor: test extension points Test that extension points keep stable interface and work. --- executor/common.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'executor/common.h') diff --git a/executor/common.h b/executor/common.h index f4201ca45..2ee0d5bd2 100644 --- a/executor/common.h +++ b/executor/common.h @@ -507,7 +507,11 @@ static uint16 csum_inet_digest(struct csum_inet* csum) #error "unknown OS" #endif +#if SYZ_TEST_COMMON_EXT_EXAMPLE +#include "common_ext_example.h" +#else #include "common_ext.h" +#endif #if SYZ_EXECUTOR || __NR_syz_execute_func // syz_execute_func(text ptr[in, text[taget]]) -- cgit mrf-deployment