aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2015-05-12 13:09:34 -0400
committerAndrew Dunstan <andrew@dunslane.net>2015-05-12 13:09:34 -0400
commit97e0aa697983cf7f7f79e69f2dc248fdefb7dbf6 (patch)
treefafbeffcadbe20fb3dedc187056a179835241ae1
parentea12b3ca8cf4d5d4a35f6ca49f8e5128f716fa90 (diff)
downloadpostgresql-97e0aa697983cf7f7f79e69f2dc248fdefb7dbf6.tar.gz
postgresql-97e0aa697983cf7f7f79e69f2dc248fdefb7dbf6.zip
pg_basebackup -F t now succeeds with a long symlink target
-rw-r--r--src/bin/pg_basebackup/t/010_pg_basebackup.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_basebackup/t/010_pg_basebackup.pl b/src/bin/pg_basebackup/t/010_pg_basebackup.pl
index 7e9a776840c..0e4bd12aff5 100644
--- a/src/bin/pg_basebackup/t/010_pg_basebackup.pl
+++ b/src/bin/pg_basebackup/t/010_pg_basebackup.pl
@@ -127,6 +127,6 @@ command_fails(
mkdir "$tempdir/$superlongname";
psql 'postgres', "CREATE TABLESPACE tblspc3 LOCATION '$tempdir/$superlongname';";
-command_fails([ 'pg_basebackup', '-D', "$tempdir/tarbackup_l3", '-Ft' ],
- 'pg_basebackup tar with long symlink target fails');
+command_ok([ 'pg_basebackup', '-D', "$tempdir/tarbackup_l3", '-Ft' ],
+ 'pg_basebackup tar with long symlink target');
psql 'postgres', "DROP TABLESPACE tblspc3;";