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:41:49 -0400 |
commit | c38518fa978075d08d64a34e1b4504da13a81e02 (patch) | |
tree | 2f24a12fbee481125a5753e602e18a54225a1894 /src/bin/pg_rewind/t/002_databases.pl | |
parent | 1d0399b54068586db003691c218c3d68bee055c8 (diff) | |
download | postgresql-c38518fa978075d08d64a34e1b4504da13a81e02.tar.gz postgresql-c38518fa978075d08d64a34e1b4504da13a81e02.zip |
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 8d6c0c0b280..13032bad44d 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'); |