diff options
author | van Hauser <vh@thc.org> | 2020-02-21 18:10:50 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-02-21 18:10:50 +0100 |
commit | ec8e8cb51c870fad75157e4c12042380767a20c6 (patch) | |
tree | 3b0e398b0bd561e4cf40c48161a41fb138b8f366 | |
parent | 249cd2c7669f9dc9f49e96756b6683744213ee08 (diff) | |
download | afl++-ec8e8cb51c870fad75157e4c12042380767a20c6.tar.gz |
no unnecessary warnings in test.sh
-rw-r--r-- | include/envs.h | 1 | ||||
-rwxr-xr-x | test/test.sh | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/envs.h b/include/envs.h index 994d6456..4650dc54 100644 --- a/include/envs.h +++ b/include/envs.h @@ -59,6 +59,7 @@ const char *afl_environment_variables[] = { "AFL_NO_CPU_RED", "AFL_NO_FORKSRV", "AFL_NO_UI", + "AFL_NO_X86", // not really an env but we dont want to warn on it "AFL_PATH", "AFL_PERFORMANCE_FILE", "AFL_PERSISTENT", diff --git a/test/test.sh b/test/test.sh index f3b5798f..aaee5392 100755 --- a/test/test.sh +++ b/test/test.sh @@ -38,6 +38,7 @@ INCOMPLETE=0 export AFL_EXIT_WHEN_DONE=1 export AFL_SKIP_CPUFREQ=1 export AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES=1 +unset AFL_NO_X86 unset AFL_QUIET unset AFL_DEBUG unset AFL_HARDEN |