diff options
author | Teodor Sigaev <teodor@sigaev.ru> | 2018-03-27 17:40:56 +0300 |
---|---|---|
committer | Teodor Sigaev <teodor@sigaev.ru> | 2018-03-27 17:40:56 +0300 |
commit | 44bd95846a526dd1f69bdc78b3832f2d2de77dd4 (patch) | |
tree | 9da35839448afbb14f1728aa231ecf65d3965d21 /src | |
parent | 920a5e500a119b03356fb1fb64a677eb1aa5fc6f (diff) | |
download | postgresql-44bd95846a526dd1f69bdc78b3832f2d2de77dd4.tar.gz postgresql-44bd95846a526dd1f69bdc78b3832f2d2de77dd4.zip |
Fix count of skipped test of basebackup on Windows
Commit 920a5e500a119b03356fb1fb64a677eb1aa5fc6f add tests which should be
skipped on Windows boxes, but patch doesn't contain right count of them.
David Steel
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_basebackup/t/010_pg_basebackup.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_basebackup/t/010_pg_basebackup.pl b/src/bin/pg_basebackup/t/010_pg_basebackup.pl index e6018de0543..32d21ce6442 100644 --- a/src/bin/pg_basebackup/t/010_pg_basebackup.pl +++ b/src/bin/pg_basebackup/t/010_pg_basebackup.pl @@ -183,7 +183,7 @@ unlink "$pgdata/$superlongname"; # skip on Windows. SKIP: { - skip "symlinks not supported on Windows", 15 if ($windows_os); + skip "symlinks not supported on Windows", 17 if ($windows_os); # Move pg_replslot out of $pgdata and create a symlink to it. $node->stop; |