ossp-pkg/xds/regression-tests/.run-tests 1.2 -> 1.3
--- .run-tests 2001/07/04 16:22:57 1.2
+++ .run-tests 2001/07/08 15:16:29 1.3
@@ -9,16 +9,17 @@
numTests=0
numFails=0
-echo Running test suite ...
+echo "Running test suite:"
for suite in $*; do
- tmp="${suite%%.exe}: "
+ tmp="${suite%%.exe}"
echo -n "$tmp"
currpos=$(($RESCOLUMN-${#tmp}))
- while [ $currpos -gt 0 ]; do
- echo -n " "
+ while [ $currpos -gt 1 ]; do
+ echo -n "."
currpos=$(($currpos-1))
done
+ echo -n " "
numTests=$(($numTests+1))
eval ./$suite >${suite%%.exe}.log 2>&1
if [ $? -eq 0 ]; then
|
|