diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-12-18 12:03:46 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-12-18 12:03:46 +0100 |
| commit | 82c5c350e569d77e2b05321cda553f388d948aa4 (patch) | |
| tree | 98c8e56e73a92068d3c7b59dc7aac5b5c6fc5926 | |
| parent | dbee63338fda39170118e3ab1f66637a690f5542 (diff) | |
| download | tools.nes-82c5c350e569d77e2b05321cda553f388d948aa4.tar.gz tools.nes-82c5c350e569d77e2b05321cda553f388d948aa4.zip | |
Rename xixanta's fuzz targets
They were named with increasing numbers due to the fact that that's the
default behaviour from cargo fuzz's command. So, just rename them to
proper human-readable names.
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
| -rw-r--r-- | .github/workflows/ci.yml | 4 | ||||
| -rw-r--r-- | lib/xixanta/fuzz/Cargo.toml | 8 | ||||
| -rw-r--r-- | lib/xixanta/fuzz/fuzz_targets/fuzz_target_assembler.rs (renamed from lib/xixanta/fuzz/fuzz_targets/fuzz_target_2.rs) | 0 | ||||
| -rw-r--r-- | lib/xixanta/fuzz/fuzz_targets/fuzz_target_parser.rs (renamed from lib/xixanta/fuzz/fuzz_targets/fuzz_target_1.rs) | 0 |
4 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66c9075..0d6e641 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,7 +45,7 @@ jobs: - name: Fuzzy test the parser run: | cd lib/xixanta - cargo +nightly fuzz run fuzz_target_1 -- -max_total_time=180 + cargo +nightly fuzz run fuzz_target_parser -- -max_total_time=180 fuzz_assembler: runs-on: ubuntu-latest @@ -66,7 +66,7 @@ jobs: - name: Fuzzy test the assembler run: | cd lib/xixanta - cargo +nightly fuzz run fuzz_target_2 -- -max_total_time=180 + cargo +nightly fuzz run fuzz_target_assembler -- -max_total_time=180 fuzz_header: runs-on: ubuntu-latest diff --git a/lib/xixanta/fuzz/Cargo.toml b/lib/xixanta/fuzz/Cargo.toml index 0c0376d..49764ed 100644 --- a/lib/xixanta/fuzz/Cargo.toml +++ b/lib/xixanta/fuzz/Cargo.toml @@ -17,15 +17,15 @@ libfuzzer-sys = "0.4" path = ".." [[bin]] -name = "fuzz_target_1" -path = "fuzz_targets/fuzz_target_1.rs" +name = "fuzz_target_parser" +path = "fuzz_targets/fuzz_target_parser.rs" test = false doc = false bench = false [[bin]] -name = "fuzz_target_2" -path = "fuzz_targets/fuzz_target_2.rs" +name = "fuzz_target_assembler" +path = "fuzz_targets/fuzz_target_assembler.rs" test = false doc = false bench = false diff --git a/lib/xixanta/fuzz/fuzz_targets/fuzz_target_2.rs b/lib/xixanta/fuzz/fuzz_targets/fuzz_target_assembler.rs index 111bae9..111bae9 100644 --- a/lib/xixanta/fuzz/fuzz_targets/fuzz_target_2.rs +++ b/lib/xixanta/fuzz/fuzz_targets/fuzz_target_assembler.rs diff --git a/lib/xixanta/fuzz/fuzz_targets/fuzz_target_1.rs b/lib/xixanta/fuzz/fuzz_targets/fuzz_target_parser.rs index 442dbbf..442dbbf 100644 --- a/lib/xixanta/fuzz/fuzz_targets/fuzz_target_1.rs +++ b/lib/xixanta/fuzz/fuzz_targets/fuzz_target_parser.rs |
