aboutsummaryrefslogtreecommitdiff
path: root/tests/qtest/fuzz
diff options
context:
space:
mode:
authorAlexander Bulekov <alxndr@bu.edu>2020-02-26 22:14:38 -0500
committerStefan Hajnoczi <stefanha@redhat.com>2020-03-06 10:33:26 +0000
commit2f36421c34b2403397a27bf42653a5a312ce3366 (patch)
tree245e78c8796e84bdffd1705f671cb245f913e780 /tests/qtest/fuzz
parentef9f8fcbec6276414921dcd042575129a6331a2d (diff)
downloadqemu-2f36421c34b2403397a27bf42653a5a312ce3366.zip
qemu-2f36421c34b2403397a27bf42653a5a312ce3366.tar.gz
qemu-2f36421c34b2403397a27bf42653a5a312ce3366.tar.bz2
fuzz: fix style/typos in linker-script comments
Signed-off-by: Alexander Bulekov <alxndr@bu.edu> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Darren Kenny <darren.kenny@oracle.com> Message-id: 20200227031439.31386-2-alxndr@bu.edu Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'tests/qtest/fuzz')
-rw-r--r--tests/qtest/fuzz/fork_fuzz.ld16
1 files changed, 10 insertions, 6 deletions
diff --git a/tests/qtest/fuzz/fork_fuzz.ld b/tests/qtest/fuzz/fork_fuzz.ld
index b23a59f..e086bba 100644
--- a/tests/qtest/fuzz/fork_fuzz.ld
+++ b/tests/qtest/fuzz/fork_fuzz.ld
@@ -1,7 +1,8 @@
-/* We adjust linker script modification to place all of the stuff that needs to
- * persist across fuzzing runs into a contiguous seciton of memory. Then, it is
+/*
+ * We adjust linker script modification to place all of the stuff that needs to
+ * persist across fuzzing runs into a contiguous section of memory. Then, it is
* easy to re-map the counter-related memory as shared.
-*/
+ */
SECTIONS
{
@@ -17,7 +18,8 @@ SECTIONS
}
.data.fuzz_ordered :
{
- /* Coverage counters. They're not necessary for fuzzing, but are useful
+ /*
+ * Coverage counters. They're not necessary for fuzzing, but are useful
* for analyzing the fuzzing performance
*/
__start___llvm_prf_cnts = .;
@@ -32,6 +34,8 @@ SECTIONS
__FUZZ_COUNTERS_END = .;
}
}
-/* Dont overwrite the SECTIONS in the default linker script. Instead insert the
- * above into the default script */
+/*
+ * Don't overwrite the SECTIONS in the default linker script. Instead insert the
+ * above into the default script
+ */
INSERT AFTER .data;