projects
/
pgpool2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6ec851b
)
Test: fix regress.sh to show correct number of total tests.
author
Tatsuo Ishii
<ishii@sraoss.co.jp>
Sat, 29 Apr 2023 12:44:59 +0000
(21:44 +0900)
committer
Tatsuo Ishii
<ishii@sraoss.co.jp>
Sat, 29 Apr 2023 22:45:38 +0000
(07:45 +0900)
Previously it ignored the number of timed out tests. As a result total
number of tests showed incorrect number because num-total tests was
calculated as num-ok + num-failed.
This is an oversight when timeout was introduced in
6688332da
.
src/test/regression/regress.sh
patch
|
blob
|
blame
|
history
diff --git
a/src/test/regression/regress.sh
b/src/test/regression/regress.sh
index 8f7503557830ab1f553dd0eafcbe9994f9bcaac5..9a658b74b2e53a7e6dcf2fca677e3392d9386197 100755
(executable)
--- a/
src/test/regression/regress.sh
+++ b/
src/test/regression/regress.sh
@@
-238,6
+238,6
@@
do
done
-total=`expr $ok + $fail`
+total=`expr $ok + $fail
+ $timeout
`
echo "out of $total ok:$ok failed:$fail timeout:$timeout"