diff options
author | Aleksey Kladov <[email protected]> | 2020-08-12 17:26:51 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-08-12 17:30:53 +0100 |
commit | a1c187eef3ba08076aedb5154929f7eda8d1b424 (patch) | |
tree | 9d898eb9600b0c36a74e4f95238f679c683fa566 /crates/ra_syntax/fuzz/fuzz_targets | |
parent | 3d6889cba72a9d02199f7adaa2ecc69bc30af834 (diff) |
Rename ra_syntax -> syntax
Diffstat (limited to 'crates/ra_syntax/fuzz/fuzz_targets')
-rw-r--r-- | crates/ra_syntax/fuzz/fuzz_targets/parser.rs | 11 | ||||
-rw-r--r-- | crates/ra_syntax/fuzz/fuzz_targets/reparse.rs | 11 |
2 files changed, 0 insertions, 22 deletions
diff --git a/crates/ra_syntax/fuzz/fuzz_targets/parser.rs b/crates/ra_syntax/fuzz/fuzz_targets/parser.rs deleted file mode 100644 index 7bc4ef30d..000000000 --- a/crates/ra_syntax/fuzz/fuzz_targets/parser.rs +++ /dev/null | |||
@@ -1,11 +0,0 @@ | |||
1 | //! FIXME: write short doc here | ||
2 | |||
3 | #![no_main] | ||
4 | use libfuzzer_sys::fuzz_target; | ||
5 | use ra_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/ra_syntax/fuzz/fuzz_targets/reparse.rs b/crates/ra_syntax/fuzz/fuzz_targets/reparse.rs deleted file mode 100644 index 16598f5f1..000000000 --- a/crates/ra_syntax/fuzz/fuzz_targets/reparse.rs +++ /dev/null | |||
@@ -1,11 +0,0 @@ | |||
1 | //! FIXME: write short doc here | ||
2 | |||
3 | #![no_main] | ||
4 | use libfuzzer_sys::fuzz_target; | ||
5 | use ra_syntax::fuzz::CheckReparse; | ||
6 | |||
7 | fuzz_target!(|data: &[u8]| { | ||
8 | if let Some(check) = CheckReparse::from_data(data) { | ||
9 | check.run(); | ||
10 | } | ||
11 | }); | ||