Skip to content

Commit b4e7b91

Browse files
committed
Adjust to latest Msys2 kernel release number
Previously 'uname -r' on Msys2 reported a kernele release starting with 2. The latest version starts with 3. In commit 1638623 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.
1 parent 01c5ef9 commit b4e7b91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/pg_dump/t/010_dump_connstr.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use TestLib;
66
use Test::More;
77

8-
if ($^O eq 'msys' && `uname -or` =~ /^2.*Msys/)
8+
if ($^O eq 'msys' && `uname -or` =~ /^[2-9].*Msys/)
99
{
1010
plan skip_all => 'High bit name tests fail on Msys2';
1111
}

0 commit comments

Comments
 (0)