aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2019-08-26 08:11:27 -0400
committerAndrew Dunstan <andrew@dunslane.net>2019-08-26 08:19:11 -0400
commit97205d04e79ded73ba7fe0196f7817f89a405303 (patch)
tree3b0fb13cf6f78655a23d8f557975999b2bc91f67 /src
parent67d5af3f42b72270b0c5a2c36c1f378ab908671a (diff)
downloadpostgresql-97205d04e79ded73ba7fe0196f7817f89a405303.tar.gz
postgresql-97205d04e79ded73ba7fe0196f7817f89a405303.zip
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 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.
Diffstat (limited to 'src')
-rw-r--r--src/bin/pg_dump/t/010_dump_connstr.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/t/010_dump_connstr.pl b/src/bin/pg_dump/t/010_dump_connstr.pl
index 048ecf24eb4..cda7c249c14 100644
--- 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';
}