From 65212ec06bdc3adbd2e764ff0525b7ba0fafa73a Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Fri, 8 Feb 2008 22:23:23 +0000 Subject: cpp/examples/direct, fanout: Converted listener.cpp to SubscriptionManager. All python/cpp combos run as part of cpp/examples make check. Fixed problems with verify scripts and VPATH builds. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@620014 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/examples/verify_all | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 qpid/cpp/examples/verify_all (limited to 'qpid/cpp/examples/verify_all') diff --git a/qpid/cpp/examples/verify_all b/qpid/cpp/examples/verify_all new file mode 100755 index 0000000000..db1d6de783 --- /dev/null +++ b/qpid/cpp/examples/verify_all @@ -0,0 +1,18 @@ +#!/bin/sh +# Verify all C++/python example combinations. +# +verify=$1; shift +qpidd=$1; shift +cpp=$1; shift + +trap "$qpidd -q" exit +export QPID_PORT=`$qpidd -dp0 --data-dir ""` +export PYTHON_EXAMPLES + +find="find $cpp" +test -d $PYTHON_EXAMPLES && find="$find $PYTHON_EXAMPLES" +find="$find -name verify" +test -d $PYTHON_EXAMPLES && \ + find="$find -o -name verify_cpp_python -o -name verify_python_cpp" +$verify `$find` + -- cgit v1.2.1