From 08977f5d5e344fa0ac0b80af0b72fc3f1468d6a5 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 8 Sep 2022 12:55:42 +0200 Subject: executor: add setup_ext_test extension point The extension point allows to setup the test process in a custom way without overwriting any of the existing files. --- executor/common_ext.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'executor/common_ext.h') diff --git a/executor/common_ext.h b/executor/common_ext.h index 22361649f..edbfcac0b 100644 --- a/executor/common_ext.h +++ b/executor/common_ext.h @@ -9,3 +9,6 @@ // This file can also define SYZ_HAVE_SETUP_EXT to 1 and provide // void setup_ext() function that will be called during VM setup. + +// This file can also define SYZ_HAVE_SETUP_EXT_TEST to 1 and provide +// void setup_ext_test() function that will be called during setup of each test process. -- cgit mrf-deployment