aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mikisabate@gmail.com>2024-12-18 12:03:46 +0100
committerMiquel Sabaté Solà <mikisabate@gmail.com>2024-12-18 12:03:46 +0100
commit82c5c350e569d77e2b05321cda553f388d948aa4 (patch)
tree98c8e56e73a92068d3c7b59dc7aac5b5c6fc5926 /.github/workflows
parentdbee63338fda39170118e3ab1f66637a690f5542 (diff)
downloadtools.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>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 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