Unbreak pg_verifybackup/t/008_untar.pl on msys

Commit 0ad8032910 contains the same pattern fixed in commit 4f0bcc7350.
Apply the same fix.
pull/75/head
Andrew Dunstan 4 years ago
parent e9d4001ec5
commit c817a072aa
No known key found for this signature in database
GPG Key ID: 99FA7FCB59FC3B81
  1. 3
      src/bin/pg_verifybackup/t/008_untar.pl

@ -19,6 +19,7 @@ $primary->start;
my $have_zlib = check_pg_config("#define HAVE_LIBZ 1");
my $backup_path = $primary->backup_dir . '/server-backup';
my $real_backup_path = PostgreSQL::Test::Utils::perl2host($backup_path);
my $extract_path = $primary->backup_dir . '/extracted-backup';
my @test_configuration = (
@ -52,7 +53,7 @@ for my $tc (@test_configuration)
# Take a server-side backup.
my @backup = (
'pg_basebackup', '--no-sync', '-cfast', '--target',
"server:$backup_path", '-Xfetch'
"server:$real_backup_path", '-Xfetch'
);
push @backup, @{$tc->{'backup_flags'}};
$primary->command_ok(\@backup,

Loading…
Cancel
Save