summaryrefslogtreecommitdiff
path: root/cpp/examples/verify_all
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2008-02-21 14:24:24 +0000
committerAlan Conway <aconway@apache.org>2008-02-21 14:24:24 +0000
commit6e8de0252bf736addca80056075ae2cc1066e4b9 (patch)
tree1441159267e1562a64d3a1fa620881cabb8f1ea0 /cpp/examples/verify_all
parente210317267eccbce31a25396f49f6c8688812f11 (diff)
downloadqpid-python-6e8de0252bf736addca80056075ae2cc1066e4b9.tar.gz
Fix verify script problem
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@629796 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/examples/verify_all')
-rwxr-xr-xcpp/examples/verify_all15
1 files changed, 7 insertions, 8 deletions
diff --git a/cpp/examples/verify_all b/cpp/examples/verify_all
index e6d75929b2..5501239021 100755
--- a/cpp/examples/verify_all
+++ b/cpp/examples/verify_all
@@ -2,20 +2,19 @@
# Verify all C++/python example combinations.
#
-src=$1 ; build=$2
-
-verify=./verify
-qpidd=$build/src/qpidd
-cpp=$build/examples/examples
-python=$src/../python
+srcdir=$1 ;
+verify=`dirname $0`/verify
+qpidd=../src/qpidd
+python=$srcdir/python
trap "$qpidd -q" exit
export QPID_PORT=`$qpidd -dp0 --data-dir ""`
export PYTHON_EXAMPLES=$python/examples
export PYTHONPATH=$python:$PYTHONPATH
-export AMQP_SPEC=$src/../specs/amqp.0-10-preview.xml
+export AMQP_SPEC=$srcdir/specs/amqp.0-10-preview.xml
-find="find $cpp"
+test -d $PYTHON_EXAMPLES || echo "Warning: not verifying python examples, $PYTHON_EXAMPLES not found"
+find="find examples"
test -d $PYTHON_EXAMPLES && find="$find $PYTHON_EXAMPLES"
find="$find -name verify"
test -d $PYTHON_EXAMPLES && \