projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
01c5ef9
)
Adjust to latest Msys2 kernel release number
author
Andrew Dunstan
<
[email protected]
>
Mon, 26 Aug 2019 12:11:27 +0000
(08:11 -0400)
committer
Andrew Dunstan
<
[email protected]
>
Mon, 26 Aug 2019 12:23:59 +0000
(08:23 -0400)
Previously 'uname -r' on Msys2 reported a kernele release starting with
2. The latest version starts with 3. In commit
1638623f
we specifically
looked for one starting with 2. This is now changed to look for any
digit between 2 and 9.
backpatch to release 10.
src/bin/pg_dump/t/010_dump_connstr.pl
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/pg_dump/t/010_dump_connstr.pl
b/src/bin/pg_dump/t/010_dump_connstr.pl
index 6807b324669935a8425100ce2c3650fc29a3ddff..8c40cbf99ff29a1753bdf966b1f98890b564b3ed 100644
(file)
--- a/
src/bin/pg_dump/t/010_dump_connstr.pl
+++ b/
src/bin/pg_dump/t/010_dump_connstr.pl
@@
-5,7
+5,7
@@
use PostgresNode;
use TestLib;
use Test::More;
-if ($^O eq 'msys' && `uname -or` =~ /^
2
.*Msys/)
+if ($^O eq 'msys' && `uname -or` =~ /^
[2-9]
.*Msys/)
{
plan skip_all => 'High bit name tests fail on Msys2';
}