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