Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 6ba0f31

Browse files
committed
Make less misleading message for failed + ignored tests.
1 parent f2c8f27 commit 6ba0f31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/regress/pg_regress.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /bin/sh
2-
# $Header: /cvsroot/pgsql/src/test/regress/Attic/pg_regress.sh,v 1.19 2001/02/18 17:53:55 tgl Exp $
2+
# $Header: /cvsroot/pgsql/src/test/regress/Attic/pg_regress.sh,v 1.20 2001/03/24 23:32:25 petere Exp $
33

44
me=`basename $0`
55
: ${TMPDIR=/tmp}
@@ -595,7 +595,7 @@ elif [ $count_ignored -eq 0 ]; then
595595
msg="$count_failed of $count_total tests failed."
596596
result=1
597597
else
598-
msg="$count_failed of $count_total tests failed, $count_ignored failed test(s) ignored."
598+
msg="`expr $count_failed + $count_ignored` of $count_total tests failed, $count_ignored of these failures ignored."
599599
result=1
600600
fi
601601

0 commit comments

Comments
 (0)