From 82c5c350e569d77e2b05321cda553f388d948aa4 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Wed, 18 Dec 2024 12:03:46 +0100 Subject: Rename xixanta's fuzz targets MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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à --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github/workflows') 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 -- cgit v1.2.3