[exim-cvs] testsuite: use File::Copy "cp" to copy the permis…

Inizio della pagina
Delete this message
Reply to this message
Autore: Exim Git Commits Mailing List
Data:  
To: exim-cvs
Oggetto: [exim-cvs] testsuite: use File::Copy "cp" to copy the permissions (x-bit)
Gitweb: https://git.exim.org/exim.git/commitdiff/701b5a89766772fe78539ea157eebe9f5687e1e4
Commit:     701b5a89766772fe78539ea157eebe9f5687e1e4
Parent:     65347ce3341c8386c3e2e1e9599c5c56e79838ec
Author:     Heiko Schlittermann (HS12-RIPE) <hs@???>
AuthorDate: Wed Mar 31 22:46:27 2021 +0200
Committer:  Heiko Schlittermann (HS12-RIPE) <hs@???>
CommitDate: Wed Mar 31 22:46:27 2021 +0200


    testsuite: use File::Copy "cp" to copy the permissions (x-bit)
---
 test/runtest | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)


diff --git a/test/runtest b/test/runtest
index ab9b2bb..64a1493 100755
--- a/test/runtest
+++ b/test/runtest
@@ -29,7 +29,7 @@ use File::Basename;
use Pod::Usage;
use Getopt::Long;
use FindBin qw'$RealBin';
-use File::Copy;
+use File::Copy qw(cp);

use lib "$RealBin/lib";
use Exim::Runtest;
@@ -3746,17 +3746,15 @@ system("sudo cp eximdir/exim eximdir/exim_exim;" .
($parm_exim_dir) = $parm_exim =~ m?^(.*)/exim?;

$dbm_build_deleted = 0;
-if (defined $parm_lookups{dbm} && not copy("$parm_exim_dir/exim_dbmbuild", "eximdir"))
+if (defined $parm_lookups{dbm} && not cp("$parm_exim_dir/exim_dbmbuild", "eximdir/exim_dbmbuild"))
{
delete $parm_lookups{dbm};
$dbm_build_deleted = 1;
}

 foreach my $tool (qw(exim_dumpdb exim_lock exinext exigrep eximstats)) {
-  copy("$parm_exim_dir/$tool" => "eximdir/")
+  cp("$parm_exim_dir/$tool" => "eximdir/$tool")
     or tests_exit(-1, "Failed to make a copy of $tool: $!");
-  chmod((stat "$parm_exim_dir/$tool")[2]&07777, "eximdir/$tool")
-    or tests_exit(-1, "Failed to chmod $tool: $!\n");
 }


# Collect some version information