diff options
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/abifuzz.sh | 2 | ||||
-rwxr-xr-x | tools/cra.sh | 2 | ||||
-rwxr-xr-x | tools/test.sh | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/tools/abifuzz.sh b/tools/abifuzz.sh index e715b3d..add56eb 100755 --- a/tools/abifuzz.sh +++ b/tools/abifuzz.sh @@ -2,7 +2,7 @@ OCAMLC=${OCAMLC:-/usr/bin/ocamlc} DIR=`cd $(dirname "$0"); pwd` -QBE=$DIR/../obj/qbe +QBE=$DIR/../qbe failure() { echo "Failure at stage:" $1 >&2 diff --git a/tools/cra.sh b/tools/cra.sh index 762ab76..5988267 100755 --- a/tools/cra.sh +++ b/tools/cra.sh @@ -1,7 +1,7 @@ #!/bin/sh DIR=`cd $(dirname "$0"); pwd` -QBE=$DIR/../obj/qbe +QBE=$DIR/../qbe BUGF=/tmp/bug.id FIND=$1 FIND=${FIND:-afl-find} diff --git a/tools/test.sh b/tools/test.sh index 15cff88..536d240 100755 --- a/tools/test.sh +++ b/tools/test.sh @@ -1,8 +1,8 @@ #!/bin/sh dir=`cd $(dirname "$0"); pwd` -bin=$dir/../obj/qbe -binref=$dir/../obj/qbe.ref +bin=$dir/../qbe +binref=$dir/../qbe.ref tmp=/tmp/qbe.zzzz |