summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2008-07-25 10:51:46 +0000
committerGordon Sim <gsim@apache.org>2008-07-25 10:51:46 +0000
commit6ba559ba6bdf0bfd15a23dc60367f0fa0077b5a6 (patch)
treee51a480c2bf1848aa2bfa80b1c29748960edc5b2 /cpp
parent7c2303850b5bb105e9760a5c0aebd363388ff78b (diff)
downloadqpid-python-6ba559ba6bdf0bfd15a23dc60367f0fa0077b5a6.tar.gz
Exclude core verify script from verifications run when python examples cannot be found.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@679756 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rwxr-xr-xcpp/examples/verify_all2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/examples/verify_all b/cpp/examples/verify_all
index 3bb259e096..ea641e2443 100755
--- a/cpp/examples/verify_all
+++ b/cpp/examples/verify_all
@@ -17,7 +17,7 @@ export QPID_PORT PYTHON_EXAMPLES PYTHONPATH
test -d $PYTHON_EXAMPLES || echo "WARNING: No python examples. $PYTHON_EXAMPLES not found."
find="find"
test -d $PYTHON_EXAMPLES && find="$find $PYTHON_EXAMPLES"
-find="$find -name verify"
+find="$find -mindepth 2 -name verify"
test -d $PYTHON_EXAMPLES && \
find="$find -o -name verify_cpp_python -o -name verify_python_cpp"
all_examples=`$find`