From: <sv...@op...> - 2024-06-29 20:48:31
|
Author: sagamusix Date: Sat Jun 29 22:48:18 2024 New Revision: 21118 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=21118 Log: [Doc] Update fuzzing documentation to reflect that we now use a C++ program for fuzzing. Modified: trunk/OpenMPT/contrib/fuzzing/readme.md Modified: trunk/OpenMPT/contrib/fuzzing/readme.md ============================================================================== --- trunk/OpenMPT/contrib/fuzzing/readme.md Sat Jun 29 18:41:11 2024 (r21117) +++ trunk/OpenMPT/contrib/fuzzing/readme.md Sat Jun 29 22:48:18 2024 (r21118) @@ -16,7 +16,7 @@ scripts are set up to use different exploration strategies. * `fuzz-settings.sh`: Set up your preferences and afl settings here before the first run. -* `fuzz.c`: A tiny C program that is used by the fuzzer to test libopenmpt. +* `fuzz.cpp`: A tiny C++ program that is used by the fuzzer to test libopenmpt. * `get-afl.sh`: A simple script to obtain the latest version of afl++. You can also make it download from a specific branch or tag, e.g. `GET_AFL_VERSION=stable ./get-afl.sh` to download the latest stable but |