summaryrefslogtreecommitdiff
path: root/bin/verify
diff options
context:
space:
mode:
Diffstat (limited to 'bin/verify')
-rwxr-xr-xbin/verify6
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/verify b/bin/verify
index 844e99b765..96fe1df9b3 100755
--- a/bin/verify
+++ b/bin/verify
@@ -19,7 +19,11 @@ trap cleanup EXIT
ARGS="${QPID_HOST:-localhost} $QPID_PORT"
-outfile() { echo $1.out; }
+outfile() {
+ file=$1
+ while [ -f $file.out ]; do file="${file}X"; done
+ echo $file.out
+ }
fail() { test -n "$*" && echo $* 1>&2 ; FAIL=1; return 1; }