From ab66033eb465ddfef93f6f4f3516b1ebaaea1afa Mon Sep 17 00:00:00 2001 From: ebell495 Date: Thu, 7 Jul 2022 11:12:35 -0400 Subject: [PATCH] Update Fuzz Target Naming --- Mayhemfile | 4 ++-- fuzz/Dockerfile | 2 +- fuzz/{fuzz.py => phonemizer_fuzz.py} | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename fuzz/{fuzz.py => phonemizer_fuzz.py} (100%) diff --git a/Mayhemfile b/Mayhemfile index 5021d91..50621ed 100644 --- a/Mayhemfile +++ b/Mayhemfile @@ -1,6 +1,6 @@ project: phonemizer -target: fuzz +target: phonemizer_fuzz cmds: - - cmd: /phonemizer/fuzz/fuzz.py + - cmd: /phonemizer/fuzz/phonemizer_fuzz.py libfuzzer: true diff --git a/fuzz/Dockerfile b/fuzz/Dockerfile index d8a8ab8..2634a4c 100644 --- a/fuzz/Dockerfile +++ b/fuzz/Dockerfile @@ -44,5 +44,5 @@ COPY ../. /phonemizer # install phonemizer and run the tests RUN cd /phonemizer && \ - chmod +x fuzz/fuzz.py && \ + chmod +x fuzz/phonemizer_fuzz.py && \ python3 setup.py install \ No newline at end of file diff --git a/fuzz/fuzz.py b/fuzz/phonemizer_fuzz.py similarity index 100% rename from fuzz/fuzz.py rename to fuzz/phonemizer_fuzz.py