]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1137669: 003safesys.t doesn't test any file due to a missing -T argument
authorFrédéric Buclin <LpSolit@gmail.com>
Mon, 16 Mar 2015 17:20:32 +0000 (18:20 +0100)
committerFrédéric Buclin <LpSolit@gmail.com>
Mon, 16 Mar 2015 17:20:32 +0000 (18:20 +0100)
r=dylan a=glob

t/003safesys.t

index b4f41f61c4b43357af2bf86cd5a44a596335a33b..5415f40688dafa62bd494f80051af51e9cfde943 100644 (file)
@@ -52,7 +52,16 @@ my $perlapp = "\"$^X\"";
 foreach my $file (@testitems) {
     $file =~ s/\s.*$//; # nuke everything after the first space (#comment)
     next if (!$file); # skip null entries
-    my $command = "$perlapp -c -It -MSupport::Systemexec $file 2>&1";
+
+    open(my $fh2, '<', $file);
+    my $bang = <$fh2>;
+    close $fh2;
+
+    my $T = "";
+    if ($bang =~ m/#!\S*perl\s+-.*T/) {
+        $T = "T";
+    }
+    my $command = "$perlapp -c$T -It -MSupport::Systemexec $file 2>&1";
     my $loginfo=`$command`;
     if ($loginfo =~ /arguments for Support::Systemexec::(system|exec)/im) {
         ok(0,"$file DOES NOT use proper system or exec calls");