diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2024-06-13 07:38:48 -0400 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2024-06-13 07:38:48 -0400 |
commit | f83908798f78c4cafda217ca875602c88ea2ae28 (patch) | |
tree | 403bc46acaae3c6419a42ebde66cc76fe6973d96 /src/bin/pg_rewind/t/002_databases.pl | |
parent | 11b9b8ce44a8cc80cbef6ade2b5ae7438227da79 (diff) |
Skip some permissions checks on Cygwin
These are checks that are already skipped on other Windows systems.
Backpatch to all live branches, as appropriate.
Diffstat (limited to 'src/bin/pg_rewind/t/002_databases.pl')
-rw-r--r-- | src/bin/pg_rewind/t/002_databases.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_rewind/t/002_databases.pl b/src/bin/pg_rewind/t/002_databases.pl index bbcd2047125..755ea80e332 100644 --- a/src/bin/pg_rewind/t/002_databases.pl +++ b/src/bin/pg_rewind/t/002_databases.pl @@ -60,7 +60,7 @@ template1 SKIP: { skip "unix-style permissions not supported on Windows", 1 - if ($windows_os); + if ($windows_os || $Config::Config{osname} eq 'cygwin'); ok(check_mode_recursive($node_primary->data_dir(), 0750, 0640), 'check PGDATA permissions'); |