summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2008-02-15 21:00:44 +0000
committerAlan Conway <aconway@apache.org>2008-02-15 21:00:44 +0000
commita8c96aae65caa95f790fb8f7011731cf5d29454a (patch)
tree2d9427eb7cf5556a57c08d7ceca47feb0a5b5d21 /bin
parent2895d73ed993c4f9d9e32116bf7c2ea0d3d089e8 (diff)
downloadqpid-python-a8c96aae65caa95f790fb8f7011731cf5d29454a.tar.gz
Updated c++ and python fanout examples and verify scripts.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@628169 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'bin')
-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; }