No review needed for tests at this time. NOT PART OF BUILD
foreach $file (@testitems) {
$file =~ s/\s.*$//; # nuke everything after the first space (#comment)
next if (!$file); # skip null entries
- $command = "$perlapp"." -c $file 2>&1";
+ open (FILE,$file);
+ my $bang = <FILE>;
+ close (FILE);
+ my $T = "";
+ if ($bang =~ m/#!\S*perl\s+-.*T/) {
+ $T = "T";
+ }
+ $command = "$perlapp"." -c$T $file 2>&1";
$loginfo=`$command`;
# print '@@'.$loginfo.'##';
if ($loginfo =~ /syntax ok$/im) {
package Support::Files;
-@additional_files = ('syncshadowdb');
-@exclude_files = ('processmail','importxml.pl');
+@additional_files = ('syncshadowdb','processmail');
+@exclude_files = ('importxml.pl');
$file = '*';
@files = glob($file);