diff options
author | Dominik Maier <domenukk@gmail.com> | 2019-12-15 18:48:57 +0100 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2019-12-15 18:48:57 +0100 |
commit | 05825a888e967071a1bdd2c51c8a8bf909b37d74 (patch) | |
tree | f9edcc39aba79908fc01e8162a4a2ac19bc461e2 /test | |
parent | 49c9b68e4e69654c09c8a2ce4e4d86a02411fc96 (diff) | |
download | afl++-05825a888e967071a1bdd2c51c8a8bf909b37d74.tar.gz |
Fixes for unicorn testscases
Diffstat (limited to 'test')
-rwxr-xr-x | test/test.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test.sh b/test/test.sh index ee497298..64c76758 100755 --- a/test/test.sh +++ b/test/test.sh @@ -550,8 +550,8 @@ test -d ../unicorn_mode/unicorn && { test -e ../unicorn_mode/samples/simple/simple_target.bin -a -e ../unicorn_mode/samples/compcov_x64/compcov_target.bin && { { # travis workaround - PY=`which python2.7` - test "$PY" = "/opt/pyenv/shims/python2.7" -a -x /usr/bin/python2.7 && PY=/usr/bin/python2.7 + PY=`which python` + test "$PY" = "/opt/pyenv/shims/python" -a -x /usr/bin/python && PY=/usr/bin/python mkdir -p in echo 0 > in/in $ECHO "$GREY[*] Using python binary $PY" |