aboutsummaryrefslogtreecommitdiffstats
path: root/executor/common_ext.h
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2022-09-08 12:55:42 +0200
committerDmitry Vyukov <dvyukov@google.com>2022-11-01 10:23:09 -0700
commit08977f5d5e344fa0ac0b80af0b72fc3f1468d6a5 (patch)
tree073d5136049228b4a279d9bca98d678f1a7afe12 /executor/common_ext.h
parent75eae5a7ef67781b73f2b9038416542c7ea0612c (diff)
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.
Diffstat (limited to 'executor/common_ext.h')
-rw-r--r--executor/common_ext.h3
1 files changed, 3 insertions, 0 deletions
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.