williamr/scan_antlogs.pl
changeset 9 d565c1ce950a
parent 4 60053dab7e2a
equal deleted inserted replaced
8:b40f95834f85 9:d565c1ce950a
   106   my $line;
   106   my $line;
   107   while ($line = <FILE>)
   107   while ($line = <FILE>)
   108     {
   108     {
   109     # Source of export does not exist:  s:/sf/mw/messagingmw/messagingfw/msgtests/group/msgerr.ra
   109     # Source of export does not exist:  s:/sf/mw/messagingmw/messagingfw/msgtests/group/msgerr.ra
   110     # Source zip for export does not exist: s:/sf/os/deviceplatformrelease/S60LocFiles/data/96.zip
   110     # Source zip for export does not exist: s:/sf/os/deviceplatformrelease/S60LocFiles/data/96.zip
   111     if ($line =~ /^Source (of|zip for) export does not exist.\s+.*\/(sf\/.*)$/)
   111     if ($line =~ /Source (of|zip for) export does not exist.\s+.*\/(sf\/.*)$/)
   112       {
   112       {
   113       do_missing_file($2, "??", "source of export");
   113       do_missing_file($2, "??", "source of export");
   114       next;
   114       next;
   115       }
   115       }
   116     # No bld.inf found at sf/os/buildtools/toolsandutils/burtestserver/Group in s:/output/build/canonical_system_definition_GT_tb91sf.xml
   116     # No bld.inf found at sf/os/buildtools/toolsandutils/burtestserver/Group in s:/output/build/canonical_system_definition_GT_tb91sf.xml
   119       {
   119       {
   120       my $bldinf = "$2/bld.inf";
   120       my $bldinf = "$2/bld.inf";
   121   
   121   
   122       do_missing_file($bldinf, $bldinf, "no bld.inf");
   122       do_missing_file($bldinf, $bldinf, "no bld.inf");
   123       $damaged_bldinfs{"$bldinf\t(missing)"} = 1;
   123       $damaged_bldinfs{"$bldinf\t(missing)"} = 1;
       
   124       next;
       
   125       }
       
   126     # Can't find mmp file 'm:/sf/mw/mmmw/mmmiddlewarefws/mmfw/SoundDev/PlatSec/MMPFiles/Sounddevice/advancedaacencodesettingsci.mmp' referred to by 'm:/sf/mw/mmmw/mmmiddlewarefws/mmfw/SoundDev/group_pluginsupport/bld.inf'
       
   127     if ($line =~ /Can.t find mmp file .*(sf\/.*)' referred to by .*(sf\/.*)'/i)
       
   128       {
       
   129       my $mmpfile = $1;
       
   130       my $bldinf = $2;
       
   131   
       
   132       do_missing_file($mmpfile, $bldinf, "no mmp file");
   124       next;
   133       next;
   125       }
   134       }
   126     # D:/Symbian/Tools/PDT_1.0/raptor/win32/mingw/bin/cpp.exe: s:/sf/os/networkingsrv/networksecurity/ipsec/group/bld.inf:19:42: ../eventmediator/group/bld.inf: No such file or directory
   135     # D:/Symbian/Tools/PDT_1.0/raptor/win32/mingw/bin/cpp.exe: s:/sf/os/networkingsrv/networksecurity/ipsec/group/bld.inf:19:42: ../eventmediator/group/bld.inf: No such file or directory
   127     if ($line =~ /cpp.exe: .*\/(sf\/[^:]*):.*\s+([^:]+): No such file/)
   136     if ($line =~ /cpp.exe: .*\/(sf\/[^:]*):.*\s+([^:]+): No such file/)
   128       {
   137       {