summaryrefslogtreecommitdiff
path: root/qpid/cpp/examples/verify_all
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2009-11-25 19:21:20 +0000
committerTed Ross <tross@apache.org>2009-11-25 19:21:20 +0000
commit3ea3d77c5247fe1ae4bd4b801dc8f4ae763f8220 (patch)
treee4eb26cc4e1bc33721bff6ba16a9b2f7c8faa518 /qpid/cpp/examples/verify_all
parent8b804ca1645b09885ff2f3eb9a8540c842db92a2 (diff)
downloadqpid-python-3ea3d77c5247fe1ae4bd4b801dc8f4ae763f8220.tar.gz
QPID-2219 - Example tests hang when run in a vpath build
Verify scripts updated to operate in vpath builds. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@884231 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/examples/verify_all')
-rwxr-xr-xqpid/cpp/examples/verify_all5
1 files changed, 3 insertions, 2 deletions
diff --git a/qpid/cpp/examples/verify_all b/qpid/cpp/examples/verify_all
index 71b4ffd438..baffd422ad 100755
--- a/qpid/cpp/examples/verify_all
+++ b/qpid/cpp/examples/verify_all
@@ -24,7 +24,8 @@
verify=`dirname $0`/verify
topsrcdir=$1
-qpidd=$2
+topbuilddir=$2
+qpidd=$topbuilddir/src/qpidd
broker_args=$3
exclude_regexp=$4
python=${QPID_PYTHON_DIR:-$topsrcdir/python}
@@ -50,4 +51,4 @@ else
{ cat $f | grep $exclude_regexp > /dev/null ; } || run_examples="$run_examples $f"
done
fi
-$verify $run_examples
+$verify $topsrcdir $topbuilddir $run_examples