From: Sandro Santilli Date: Fri, 11 Oct 2013 12:11:12 +0000 (+0000) Subject: Name dumper test shapefile after test name (#2507) X-Git-Tag: 2.2.0rc1~1331 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cfaf93f95c582c51750d19da8b89b6f33cd5cfb3;p=postgis Name dumper test shapefile after test name (#2507) git-svn-id: http://svn.osgeo.org/postgis/trunk@12032 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/regress/run_test.pl b/regress/run_test.pl index bf59ef4ce..13afe444a 100755 --- a/regress/run_test.pl +++ b/regress/run_test.pl @@ -923,9 +923,9 @@ sub run_dumper_test # ON_ERROR_STOP is used by psql to return non-0 on an error my $psql_opts="--no-psqlrc --variable ON_ERROR_STOP=true"; - my $shpfile = "${TMPDIR}/dumper-shp"; - my $outfile = "${TMPDIR}/dumper.out"; - my $errfile = "${TMPDIR}/dumper.err"; + my $shpfile = "${TMPDIR}/dumper-" . basename(${TEST}) . "-shp"; + my $outfile = "${TMPDIR}/dumper-" . basename(${TEST}) . ".out"; + my $errfile = "${TMPDIR}/dumper-" . basename(${TEST}) . ".err"; # Produce the output SHP file. open DUMPFILE, "$dump_file" or die "Cannot open dump file $dump_file\n";