diff options
author | Gordon Sim <gsim@apache.org> | 2008-07-25 10:51:46 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2008-07-25 10:51:46 +0000 |
commit | d3eb5dd82ece06e837bcd1d345b6721164f4e322 (patch) | |
tree | 0648a98963eef7da9b3173e45ba6680dc5caa5f0 /qpid/cpp/examples/verify_all | |
parent | 9a3c24de4c9f18a068be36e50fdbf44589499787 (diff) | |
download | qpid-python-d3eb5dd82ece06e837bcd1d345b6721164f4e322.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@679756 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/examples/verify_all')
-rwxr-xr-x | qpid/cpp/examples/verify_all | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/examples/verify_all b/qpid/cpp/examples/verify_all index 3bb259e096..ea641e2443 100755 --- a/qpid/cpp/examples/verify_all +++ b/qpid/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` |