summaryrefslogtreecommitdiff
path: root/cpp/examples/verify_all
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2010-03-10 11:48:20 +0000
committerGordon Sim <gsim@apache.org>2010-03-10 11:48:20 +0000
commit7c22d7b3c540dd6038c84467d6d9ca796d5b66ef (patch)
tree58f3ff546ab481134feed365e8b977b59d7d5587 /cpp/examples/verify_all
parentc5b1859b18dcd81c621721d6df31dc9fd0a5762f (diff)
downloadqpid-python-7c22d7b3c540dd6038c84467d6d9ca796d5b66ef.tar.gz
QPID-2441: patch from Jan Sarenik that prevents verification failures when running the examples if locale is not as expected
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@921319 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/examples/verify_all')
-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 baffd422ad..9d71c7498a 100755
--- a/cpp/examples/verify_all
+++ b/cpp/examples/verify_all
@@ -48,7 +48,7 @@ if test -z "$exclude_regexp"; then
run_examples=$all_examples
else
for f in $all_examples; do
- { cat $f | grep $exclude_regexp > /dev/null ; } || run_examples="$run_examples $f"
+ { echo $f | grep $exclude_regexp > /dev/null ; } || run_examples="$run_examples $f"
done
fi
$verify $topsrcdir $topbuilddir $run_examples