diff options
author | Dmitry <[email protected]> | 2020-08-14 19:32:05 +0100 |
---|---|---|
committer | Dmitry <[email protected]> | 2020-08-14 19:32:05 +0100 |
commit | 178c3e135a2a249692f7784712492e7884ae0c00 (patch) | |
tree | ac6b769dbf7162150caa0c1624786a4dd79ff3be /crates/syntax/fuzz/fuzz_targets | |
parent | 06ff8e6c760ff05f10e868b5d1f9d79e42fbb49c (diff) | |
parent | c2594daf2974dbd4ce3d9b7ec72481764abaceb5 (diff) |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'crates/syntax/fuzz/fuzz_targets')
-rw-r--r-- | crates/syntax/fuzz/fuzz_targets/parser.rs | 11 | ||||
-rw-r--r-- | crates/syntax/fuzz/fuzz_targets/reparse.rs | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/crates/syntax/fuzz/fuzz_targets/parser.rs b/crates/syntax/fuzz/fuzz_targets/parser.rs new file mode 100644 index 000000000..386768343 --- /dev/null +++ b/crates/syntax/fuzz/fuzz_targets/parser.rs | |||
@@ -0,0 +1,11 @@ | |||
1 | //! FIXME: write short doc here | ||
2 | |||
3 | #![no_main] | ||
4 | use libfuzzer_sys::fuzz_target; | ||
5 | use syntax::fuzz::check_parser; | ||
6 | |||
7 | fuzz_target!(|data: &[u8]| { | ||
8 | if let Ok(text) = std::str::from_utf8(data) { | ||
9 | check_parser(text) | ||
10 | } | ||
11 | }); | ||
diff --git a/crates/syntax/fuzz/fuzz_targets/reparse.rs b/crates/syntax/fuzz/fuzz_targets/reparse.rs new file mode 100644 index 000000000..5ac99fdaf --- /dev/null +++ b/crates/syntax/fuzz/fuzz_targets/reparse.rs | |||
@@ -0,0 +1,11 @@ | |||
1 | //! FIXME: write short doc here | ||
2 | |||
3 | #![no_main] | ||
4 | use libfuzzer_sys::fuzz_target; | ||
5 | use syntax::fuzz::CheckReparse; | ||
6 | |||
7 | fuzz_target!(|data: &[u8]| { | ||
8 | if let Some(check) = CheckReparse::from_data(data) { | ||
9 | check.run(); | ||
10 | } | ||
11 | }); | ||