Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
6ba0f31b
Commit
6ba0f31b
authored
Mar 24, 2001
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make less misleading message for failed + ignored tests.
parent
f2c8f278
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/test/regress/pg_regress.sh
src/test/regress/pg_regress.sh
+2
-2
No files found.
src/test/regress/pg_regress.sh
View file @
6ba0f31b
#! /bin/sh
# $Header: /cvsroot/pgsql/src/test/regress/Attic/pg_regress.sh,v 1.
19 2001/02/18 17:53:55 tgl
Exp $
# $Header: /cvsroot/pgsql/src/test/regress/Attic/pg_regress.sh,v 1.
20 2001/03/24 23:32:25 petere
Exp $
me
=
`
basename
$0
`
:
${
TMPDIR
=/tmp
}
...
...
@@ -595,7 +595,7 @@ elif [ $count_ignored -eq 0 ]; then
msg
=
"
$count_failed
of
$count_total
tests failed."
result
=
1
else
msg
=
"
$count_failed
of
$count_total
tests failed,
$count_ignored
failed test(s)
ignored."
msg
=
"
`
expr
$count_failed
+
$count_ignored
`
of
$count_total
tests failed,
$count_ignored
of these failures
ignored."
result
=
1
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment