You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by gs...@apache.org on 2008/07/25 12:51:46 UTC

svn commit: r679756 - /incubator/qpid/trunk/qpid/cpp/examples/verify_all

Author: gsim
Date: Fri Jul 25 03:51:46 2008
New Revision: 679756

URL: http://svn.apache.org/viewvc?rev=679756&view=rev
Log:
Exclude core verify script from verifications run when python examples cannot be found.


Modified:
    incubator/qpid/trunk/qpid/cpp/examples/verify_all

Modified: incubator/qpid/trunk/qpid/cpp/examples/verify_all
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/examples/verify_all?rev=679756&r1=679755&r2=679756&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/examples/verify_all (original)
+++ incubator/qpid/trunk/qpid/cpp/examples/verify_all Fri Jul 25 03:51:46 2008
@@ -17,7 +17,7 @@
 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`