From 975e68b7dfed8abdd6b5b0df7bf1dfe66fe61fa7 Mon Sep 17 00:00:00 2001 From: Gu Zhengxiong Date: Mon, 18 Apr 2016 17:17:48 +0800 Subject: [PATCH] Misc: Fixed the testing script. --- requirements.txt | 2 -- scripts/should_work.sh | 16 ++++++++-------- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/requirements.txt b/requirements.txt index 7d892aa..18b02a6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,8 +2,6 @@ click colorama pat -capstone -filebytes ropper pyelftools diff --git a/scripts/should_work.sh b/scripts/should_work.sh index 0f8a3e6..5a071f7 100755 --- a/scripts/should_work.sh +++ b/scripts/should_work.sh @@ -1,11 +1,11 @@ #!/usr/bin/env bash -./bintut.py plain -b0.1 "${@}" && - ./bintut.py plain -b0.1 -6 "${@}" && - ./bintut.py nop-slide -b0.1 "${@}" && - ./bintut.py nop-slide -b0.1 -6 "${@}" && - ./bintut.py jmp-esp -b0.1 "${@}" && - ./bintut.py jmp-esp -b0.1 -6 "${@}" && - ./bintut.py ret2lib -b0.1 "${@}" && - ./bintut.py frame-faking -b0.1 "${@}" +python ./bintut.py plain -b0.1 "${@}" && + python ./bintut.py plain -b0.1 -6 "${@}" && + python ./bintut.py nop-slide -b0.1 "${@}" && + python ./bintut.py nop-slide -b0.1 -6 "${@}" && + python ./bintut.py jmp-esp -b0.1 "${@}" && + python ./bintut.py jmp-esp -b0.1 -6 "${@}" && + python ./bintut.py ret2lib -b0.1 "${@}" && + python ./bintut.py frame-faking -b0.1 "${@}"