mirror of
https://github.com/postgres/postgres.git
synced 2026-03-22 18:33:19 -04:00
Don't leave behind files in src dir in 007_multixact_conversion.pl
pg_upgrade test 007_multixact_conversion.pl was leaving files like delete_old_cluster.sh in the source directory for VPATH and meson builds. To fix, change the tmp_check directory before running the test, like in the other pg_upgrade tests. Author: Hayato Kuroda <kuroda.hayato@fujitsu.com> https://www.postgresql.org/message-id/TYRPR01MB121563A4DA8B2FE9A2ECB79F5F541A@TYRPR01MB12156.jpnprd01.prod.outlook.com
This commit is contained in:
parent
182cdf5aea
commit
2c1a7d421f
1 changed files with 5 additions and 0 deletions
|
|
@ -357,6 +357,11 @@ sub upgrade_and_compare
|
|||
'multixact members from original and upgraded clusters match');
|
||||
}
|
||||
|
||||
# In a VPATH build, we'll be started in the source directory, but we want
|
||||
# to run pg_upgrade in the build directory so that any files generated finish
|
||||
# in it, like delete_old_cluster.{sh,bat}.
|
||||
chdir ${PostgreSQL::Test::Utils::tmp_check};
|
||||
|
||||
my $old_version;
|
||||
|
||||
# Basic scenario: Create a cluster using old installation, run
|
||||
|
|
|
|||
Loading…
Reference in a new issue