Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit c817a07

Browse files
committed
Unbreak pg_verifybackup/t/008_untar.pl on msys
Commit 0ad8032 contains the same pattern fixed in commit 4f0bcc7. Apply the same fix.
1 parent e9d4001 commit c817a07

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bin/pg_verifybackup/t/008_untar.pl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
my $have_zlib = check_pg_config("#define HAVE_LIBZ 1");
2121
my $backup_path = $primary->backup_dir . '/server-backup';
22+
my $real_backup_path = PostgreSQL::Test::Utils::perl2host($backup_path);
2223
my $extract_path = $primary->backup_dir . '/extracted-backup';
2324

2425
my @test_configuration = (
@@ -52,7 +53,7 @@
5253
# Take a server-side backup.
5354
my @backup = (
5455
'pg_basebackup', '--no-sync', '-cfast', '--target',
55-
"server:$backup_path", '-Xfetch'
56+
"server:$real_backup_path", '-Xfetch'
5657
);
5758
push @backup, @{$tc->{'backup_flags'}};
5859
$primary->command_ok(\@backup,

0 commit comments

Comments
 (0)