aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorkate.ward <kate.ward@forestent.com>2008-11-12 20:18:46 +0000
committerkate.ward <kate.ward@forestent.com>2008-11-12 20:18:46 +0000
commitcd0bafa6ee2ddd87a13d0eb14219b551cfa31a63 (patch)
tree9c0954ad8437e5b767479fad2677b599205a87c6 /source
parentd99166b6841b9367e672f1864d77a2a239f85a45 (diff)
downloadshflags-cd0bafa6ee2ddd87a13d0eb14219b551cfa31a63.tar.gz
don't send 'Executing the test suite' message to stderr
Diffstat (limited to 'source')
-rwxr-xr-xsource/1.0/src/shflags_test.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/1.0/src/shflags_test.sh b/source/1.0/src/shflags_test.sh
index 0d2976f..0f0ce1d 100755
--- a/source/1.0/src/shflags_test.sh
+++ b/source/1.0/src/shflags_test.sh
@@ -115,7 +115,7 @@ EOF
for suite in ${tests}; do
suiteName=`expr "${suite}" : "${PREFIX}\(.*\).sh"`
echo
- echo "--- Executing the '${suiteName}' test suite ---" >&2
- ( exec ${shell} ./${suite}; )
+ echo "--- Executing the '${suiteName}' test suite ---"
+ ( exec ${shell} ./${suite} 2>&1; )
done
done