-
Notifications
You must be signed in to change notification settings - Fork 212
Expand file tree
/
Copy pathcontext.txt
More file actions
38 lines (34 loc) · 929 Bytes
/
context.txt
File metadata and controls
38 lines (34 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{% if include_statement %}
You must add the following #include statement in the fuzz target, its header file defines the function-under-test.
<code>
{{ include_statement }}
</code>
{% endif %}
{% if must_insert %}
You must insert code in the below code block before the function being tested:
<code>
{{ must_insert }}
</code>
{% endif %}
{% if typedef %}
Here is the source code reference of necessary type definitions that are needed for creating the parameters for the function:
<code>
{{ typedef }}
</code>
{% endif %}
{% if func_source %}
Here is the source code of the function being tested:
<code>
{{ func_source }}
</code>
{% endif %}
{% if xrefs %}
Here is the source code for functions which reference the function being tested:
<code>
{{ xrefs }}
</code>
{% endif %}
{% if tests_xrefs %}
Here is the source code snippet for the tests/examples that reference the function being tested:
{{ tests_xrefs }}
{% endif %}