diff options
author | hexcoder- <heiko@hexco.de> | 2020-04-08 17:53:25 +0000 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-04-08 17:53:25 +0000 |
commit | 729dbf7dda1fb2ddae0e1687533d17d228beb92a (patch) | |
tree | 86d53da4fd7e295b29b8550445bb1f88948eb6c5 /src/afl-fuzz.c | |
parent | 67e9ef43a7cd4b664a76993fc8baa5b97106cb1f (diff) | |
download | afl++-729dbf7dda1fb2ddae0e1687533d17d228beb92a.tar.gz |
afl-fuzz: add usage info when no python support is there, use it in test.sh
Diffstat (limited to 'src/afl-fuzz.c')
-rw-r--r-- | src/afl-fuzz.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index e348f758..a4c5cfb5 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -198,6 +198,8 @@ static void usage(afl_state_t *afl, u8 *argv0, int more_help) { #ifdef USE_PYTHON SAYF("Compiled with %s module support, see docs/custom_mutator.md\n", (char *)PYTHON_VERSION); +#else + SAYF("Compiled without python module support\n"); #endif SAYF("For additional help please consult %s/README.md\n\n", doc_path); |