8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca2d819 commit b91a97aCopy full SHA for b91a97a
src/tools/msvc/vcregress.pl
@@ -178,6 +178,20 @@ sub ecpgcheck
178
sub isolationcheck
179
{
180
chdir "../isolation";
181
+ rmtree "testtablespace";
9263 182
+ mkdir "testtablespace";
183
+ my $abs_testtablespace = abs_path "testtablespace";
184
+ my @generated_specs = ("drop-tablespace.spec");
185
+ foreach(@generated_specs) {
186
+ my $spec = $_;
187
+ open(IN, '<specs/'.$spec.'.template') or die $!;
188
+ open(OUT, '>specs/'.$spec.'.template') or die $!;
189
+ while (<IN>) {
190
+ s|\@testtablespace\@|$abs_testtablespace|
191
+ }
192
+ close(OUT);
193
+ close(IN);
194
195
copy("../../../$Config/isolationtester/isolationtester.exe",
182
196
"../../../$Config/pg_isolation_regress");
197
my @args = (
0 commit comments