diff options
| author | Khaled Yakdan <yakdan@code-intelligence.de> | 2019-09-04 23:20:18 +0200 |
|---|---|---|
| committer | Khaled Yakdan <yakdan@code-intelligence.de> | 2019-09-04 23:20:18 +0200 |
| commit | b31dff6beec6a7aa17da6f7f8a2eef198c263ccc (patch) | |
| tree | c039aeed3572b171c2b7108cd650a0ee53c1b0f6 /afl-whatsup | |
| parent | 1b3f9713309d27c49b153f9b3af12d208076e93c (diff) | |
| parent | abf61ecc8f1b4ea3de59f818d859139637b29f32 (diff) | |
| download | afl++-b31dff6beec6a7aa17da6f7f8a2eef198c263ccc.tar.gz | |
Merge branch 'master-upstream' into custom_mutator_docs
# Conflicts: # afl-fuzz.c
Diffstat (limited to 'afl-whatsup')
| -rwxr-xr-x | afl-whatsup | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/afl-whatsup b/afl-whatsup index a4d30418..505f7eba 100755 --- a/afl-whatsup +++ b/afl-whatsup @@ -19,6 +19,13 @@ echo "status check tool for afl-fuzz by <lcamtuf@google.com>" echo +test "$1" = "-h" && { + echo $0 + echo + echo afl-whatsup has no command line options + echo + exit 1 +} if [ "$1" = "-s" ]; then @@ -54,7 +61,7 @@ fi CUR_TIME=`date +%s` -TMP=`mktemp -t .afl-whatsup-XXXXXXXX` || exit 1 +TMP=`mktemp -t .afl-whatsup-XXXXXXXX` || TMP=`mktemp -p /data/local/tmp .afl-whatsup-XXXXXXXX` || exit 1 ALIVE_CNT=0 DEAD_CNT=0 |
