summaryrefslogtreecommitdiff
path: root/qpid/bin/verify_all
blob: 6be460c701594ce48642ddce4b71804b6f8d22c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# Find example verify scripts and run them.
# Usage: verify_all search-dir

if [ `basename $1` = examples ]; then exdirs=$1
else exdirs=`find $1 -name examples -a -type d`; fi
scripts=`find $exdirs -name verify -o -name verify_cpp_python -o -name verify_cpp_java`
verify=`dirname $0`/verify
for s in $scripts; do $verify $s; done