os/mm/mmtestenv/mmtesttools/Scripts/RunTests.bat
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/mmtestenv/mmtesttools/Scripts/RunTests.bat	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,478 @@
     1.4 +@rem
     1.5 +@rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +@rem All rights reserved.
     1.7 +@rem This component and the accompanying materials are made available
     1.8 +@rem under the terms of "Eclipse Public License v1.0"
     1.9 +@rem which accompanies this distribution, and is available
    1.10 +@rem at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +@rem
    1.12 +@rem Initial Contributors:
    1.13 +@rem Nokia Corporation - initial contribution.
    1.14 +@rem
    1.15 +@rem Contributors:
    1.16 +@rem
    1.17 +@rem Description:
    1.18 +@rem
    1.19 +@rem = '--*-Perl-*--
    1.20 +@echo off
    1.21 +if "%OS%" == "Windows_NT" goto WinNT
    1.22 +perl -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
    1.23 +goto endofperl
    1.24 +:WinNT
    1.25 +perl -x -S "%0" %*
    1.26 +if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl
    1.27 +if %errorlevel% == 9009 echo You do not have Perl in your PATH.
    1.28 +goto endofperl
    1.29 +@rem ';
    1.30 +#!perl
    1.31 +#line 14
    1.32 +    eval 'exec perl.exe -S $0 ${1+"$@"}'
    1.33 +    if $running_under_some_shell;
    1.34 +
    1.35 +use strict; # important pragma
    1.36 +use File::Copy;
    1.37 +use File::Find;
    1.38 +
    1.39 +
    1.40 +my @Month =("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
    1.41 +my ($sec,my $min,my $hour,my $mday,my $mon,my $year,my $wday,my $yday,my $isdst); 
    1.42 +
    1.43 +
    1.44 +my $BuildToUse="winscw";
    1.45 +my $EpocCDrive = "$ENV{EPOCROOT}epoc32\\$BuildToUse\\c";
    1.46 +my $ResultsDirectory = "$EpocCDrive\\Logs\\TestResults";
    1.47 +my $TestFrameworkOpts="";
    1.48 +my $TestFrameworkNoDelay="";
    1.49 +my $Debug=0;
    1.50 +my $Warning=0; #controls how pernickety the output is
    1.51 +my $Cmd; #general variable to carry system commands
    1.52 +my $CodeCover=0;
    1.53 +my $ScriptToRun='[\S]+\.script';
    1.54 +my $TimesToRun=1;
    1.55 +
    1.56 +
    1.57 +if(@ARGV && (($ARGV[0] eq "-h") ||
    1.58 +     ($ARGV[0] eq "--h") ||
    1.59 +     ($ARGV[0] eq "-help") ||
    1.60 +     ($ARGV[0] eq "--help") ||
    1.61 +     ($ARGV[0] eq "help"))
    1.62 +	 )
    1.63 +    {
    1.64 +    print "Runs all the Test Framework and Test Execute script files.\n";
    1.65 +    print "\nSyntax : runtests -b=sss -d -c -a -v=nnn -cc -rep=nnn -q\n";
    1.66 +	print "-b   Compiler version to use [wins\|winscw) (default=$BuildToUse)\n";
    1.67 +    print "-d   Force to run testframework at debug mode \n";
    1.68 +    print "-c   Clean results directory ($ResultsDirectory)\n";
    1.69 +    print "-a   Full output in testframework console\n";
    1.70 +    print "-v   Provide verbose output 1=limited 2=maximum\n";
    1.71 +    print "-s   Define a script to be executed (ommitting causes all scripts to be run)\n";
    1.72 +    print "-cc  Only run release builds for Code Cover\n";
    1.73 +    print "-rep Repeat the test run a number of times\n";
    1.74 +    print "-q      Start testframework without the 20 second delay\n";
    1.75 +
    1.76 +    exit 0;
    1.77 +    }
    1.78 +
    1.79 +
    1.80 +
    1.81 +use Getopt::Long;
    1.82 +my %optctl = ();
    1.83 +keys(%optctl)=10;
    1.84 +unless (GetOptions (\%optctl, "b=s","d","c","v=i", "cc", "s=s","rep=i","a","q")) 
    1.85 +  {exit 1;}
    1.86 +
    1.87 +
    1.88 +
    1.89 +if($optctl{"b"})
    1.90 +  {
    1.91 +  $BuildToUse=$optctl{"b"};
    1.92 +  if((lc($BuildToUse) ne "wins") && (lc($BuildToUse) ne "winscw"))
    1.93 +    {
    1.94 +	print STDERR "only wins and winscw builds are supported\n";
    1.95 +	exit 1;
    1.96 +	}
    1.97 +
    1.98 +   $EpocCDrive = "$ENV{EPOCROOT}epoc32\\$BuildToUse\\c";
    1.99 +   $ResultsDirectory = "$EpocCDrive\\Logs\\TestResults";
   1.100 +  }
   1.101 +#repeat test run a number of times
   1.102 +if($optctl{"rep"})
   1.103 +  {
   1.104 +  $TimesToRun = $optctl{"rep"};
   1.105 +  if(($TimesToRun < 1))
   1.106 +    {
   1.107 +    print STDERR "must specify a positive number of repeates\n";
   1.108 +    exit 1;
   1.109 +    }
   1.110 +  }
   1.111 +
   1.112 +
   1.113 +#debug on
   1.114 +if($optctl{"v"})
   1.115 +  {$Debug=$optctl{"v"};}
   1.116 +
   1.117 +if($Debug ==2)
   1.118 +  {
   1.119 +  print "Command line options:-\n";
   1.120 +  while ((my $key, my $val) = each %optctl) 
   1.121 +    {print "$key  =>  $val\n";}
   1.122 +  }
   1.123 +
   1.124 +
   1.125 +#Code Cover run
   1.126 +if($optctl{"cc"})
   1.127 +  {$CodeCover=1;}
   1.128 +
   1.129 +
   1.130 +if($Debug ==2)
   1.131 +  {
   1.132 +  print "Command line options:-\n";
   1.133 +  while ((my $key, my $val) = each %optctl) 
   1.134 +    {print "$key  =>  $val\n";}
   1.135 +  }
   1.136 +
   1.137 +
   1.138 +
   1.139 +if($optctl{"c"})
   1.140 +  {
   1.141 +  print "Deleting Existing Results FIles\n";
   1.142 +
   1.143 +  my @ExistingResultsFiles;
   1.144 +  my $ExistingResultsFile;
   1.145 +  find( sub { push @ExistingResultsFiles, $File::Find::name if /\.htm/ }, ($ResultsDirectory) );
   1.146 +
   1.147 +
   1.148 +  foreach $ExistingResultsFile (@ExistingResultsFiles)
   1.149 +    {
   1.150 +    $ExistingResultsFile =~ s/\//\\/g;
   1.151 +    $Cmd="del $ExistingResultsFile";
   1.152 +    if($Debug==2)
   1.153 +	  {print "executing $Cmd\n";}
   1.154 +    system($Cmd);
   1.155 +	}
   1.156 +
   1.157 +  }
   1.158 +
   1.159 +if($optctl{"a"})
   1.160 +  {
   1.161 +  print "Full output in testframework console\n";
   1.162 +  $TestFrameworkOpts .= " -a";
   1.163 +  }
   1.164 +
   1.165 +if($optctl{"s"})
   1.166 +  {
   1.167 +  $ScriptToRun = $optctl{"s"};
   1.168 +    
   1.169 +  print "Looking for script file $ScriptToRun\n";
   1.170 +  }
   1.171 +
   1.172 +# Only add -q flag to textframework request
   1.173 +if($optctl{"q"})
   1.174 +	{
   1.175 +  	$TestFrameworkNoDelay .= " -q";
   1.176 +  	}
   1.177 +
   1.178 +my $UrelTestFramework = "$ENV{EPOCROOT}epoc32\\release\\$BuildToUse\\urel\\testframework.exe" . $TestFrameworkOpts . $TestFrameworkNoDelay;
   1.179 +my $UdebTestFramework = "$ENV{EPOCROOT}epoc32\\release\\$BuildToUse\\udeb\\testframework.exe -t" . $TestFrameworkOpts . $TestFrameworkNoDelay;
   1.180 +my $RecogUrelTestFramework = "$ENV{EPOCROOT}epoc32\\release\\$BuildToUse\\urel\\testframeworkrecognizer.exe" . $TestFrameworkOpts . $TestFrameworkNoDelay;
   1.181 +my $RecogUdebTestFramework = "$ENV{EPOCROOT}epoc32\\release\\$BuildToUse\\udeb\\testframeworkrecognizer.exe" . $TestFrameworkOpts . $TestFrameworkNoDelay;
   1.182 +my $NoneUrelTestFramework = "$ENV{EPOCROOT}epoc32\\release\\$BuildToUse\\urel\\testframeworkNone.exe" . $TestFrameworkOpts . $TestFrameworkNoDelay;
   1.183 +my $NoneUdebTestFramework = "$ENV{EPOCROOT}epoc32\\release\\$BuildToUse\\udeb\\testframeworkNone.exe" . $TestFrameworkOpts . $TestFrameworkNoDelay;
   1.184 +my $MMDDCapUrelTestFramework = "$ENV{EPOCROOT}epoc32\\release\\$BuildToUse\\urel\\testframeworkMMDDCap.exe" . $TestFrameworkOpts . $TestFrameworkNoDelay;
   1.185 +my $UECapUrelTestFramework = "$ENV{EPOCROOT}epoc32\\release\\$BuildToUse\\urel\\testframeworkUECap.exe" . $TestFrameworkOpts . $TestFrameworkNoDelay;
   1.186 +my $UrelEpocEmulator  = "$ENV{EPOCROOT}epoc32\\release\\$BuildToUse\\urel\\epoc.exe" . $TestFrameworkOpts;
   1.187 +my $UdebEpocEmulator  = "$ENV{EPOCROOT}epoc32\\release\\$BuildToUse\\udeb\\epoc.exe" . $TestFrameworkOpts;
   1.188 +my $eka2IdentifyFile  = "$ENV{EPOCROOT}epoc32\\release\\winscw\\udeb\\winsgui.dll"; # if file present, is EKA2 build
   1.189 +my $UrelTestExecute = "$ENV{EPOCROOT}epoc32\\release\\$BuildToUse\\urel\\testexecute.exe" . $TestFrameworkOpts;
   1.190 +my $UdebTestExecute = "$ENV{EPOCROOT}epoc32\\release\\$BuildToUse\\udeb\\testexecute.exe" . $TestFrameworkOpts;
   1.191 +
   1.192 +my $RecogniserCfgFile = "$EpocCDrive\\mm\\AutorunTests.cfg";
   1.193 +my $copy_ini_secdisp = "perl secdisp_ini_append.pl append"; 
   1.194 +my $delete_ini_secdisp = "perl secdisp_ini_append.pl restore";
   1.195 +if($Debug>=1)
   1.196 +  {
   1.197 +  print "\nUsing $RecogniserCfgFile to configure the Epoc recogniser\n";
   1.198 +  }
   1.199 +
   1.200 +print "\nScanning $EpocCDrive for script files\n";
   1.201 +my @ScriptFilesFound;
   1.202 +my $ScriptFile;
   1.203 +my $ScriptToRunTmp = $ScriptToRun;
   1.204 +
   1.205 +#Firstly, try to find an exact script name
   1.206 +print "ScriptToRunTmp = $ScriptToRunTmp\n";
   1.207 +
   1.208 +if(!($ScriptToRun =~ /\.script/i))
   1.209 +  {$ScriptToRunTmp = $ScriptToRun .'\.script';}
   1.210 + 
   1.211 +#find all the required script files
   1.212 +find( sub { push @ScriptFilesFound, $File::Find::name if /^$ScriptToRunTmp$/i }, ($EpocCDrive) );
   1.213 +
   1.214 +#if no scripts were found, look for scripts that wildcard match
   1.215 +if(@ScriptFilesFound < 1)
   1.216 +  {
   1.217 +  if(!($ScriptToRun =~ /\.script/i))
   1.218 +    {$ScriptToRunTmp = '[\S]*' . $ScriptToRun .'[\S]*\.script';}
   1.219 +  else
   1.220 +    {$ScriptToRunTmp = $ScriptToRun;}
   1.221 +
   1.222 +  find( sub { push @ScriptFilesFound, $File::Find::name if /$ScriptToRunTmp/i }, ($EpocCDrive) );
   1.223 +  }
   1.224 +
   1.225 +if($Debug>=1)
   1.226 +  {
   1.227 +  my $len = @ScriptFilesFound;
   1.228 +  print "\nScanned $len script files in $EpocCDrive\n";
   1.229 +  foreach $ScriptFile (@ScriptFilesFound)
   1.230 +    {print "$ScriptFile\n";}
   1.231 +  }
   1.232 +
   1.233 +
   1.234 +#look for any scripts that are called from other scripts; no need to call these directly
   1.235 +my @IndirectScripts;
   1.236 +my $IndirectScript;
   1.237 +foreach $ScriptFile (@ScriptFilesFound)
   1.238 +  {
   1.239 +  unless (open(SCRIPTFILE,"$ScriptFile")) 
   1.240 +    {
   1.241 +    print STDERR "Can't open $ScriptFile: $!\n";
   1.242 +    exit 1;
   1.243 +    }
   1.244 + 
   1.245 +  my $ScriptFileLine;
   1.246 +  my @ResultFileContents = <SCRIPTFILE>;
   1.247 +
   1.248 +  foreach $ScriptFileLine (@ResultFileContents)
   1.249 +    {
   1.250 +    if($ScriptFileLine =~ /^RUN_SCRIPT[\s]+[\S]+[\s]*$/)
   1.251 +      { 
   1.252 +	  if($Debug==2)
   1.253 +        {print "File: $ScriptFile Line:  $ScriptFileLine\n";}
   1.254 +	  
   1.255 +	  $IndirectScript =  $ScriptFileLine;
   1.256 +	  $_ = $IndirectScript;
   1.257 +
   1.258 +	  m/^RUN_SCRIPT[\s]+([\S]+)[\s]*$/;
   1.259 +      $IndirectScript=($1);
   1.260 +
   1.261 +	  if($Debug==2)
   1.262 +        {print "Secondary Script = $IndirectScript\n";}
   1.263 +
   1.264 +	  push @IndirectScripts, $IndirectScript;
   1.265 +	  }
   1.266 +    }
   1.267 +  }
   1.268 +
   1.269 +
   1.270 +#produce a list of the script files that need running
   1.271 +my @ScriptsToRun;
   1.272 +ScriptFile_LBL: foreach $ScriptFile (@ScriptFilesFound)
   1.273 +  {
   1.274 +  
   1.275 +  foreach $IndirectScript (@IndirectScripts)
   1.276 +    {
   1.277 +	if($ScriptFile =~ /$IndirectScript/)
   1.278 +	  {
   1.279 +	  if($Debug==2)
   1.280 +        {print "Not running $ScriptFile directly\n";}
   1.281 +	  next ScriptFile_LBL;}
   1.282 +	}   
   1.283 +
   1.284 +  push @ScriptsToRun, $ScriptFile;
   1.285 +  }
   1.286 +
   1.287 +
   1.288 +if($Debug>=1)
   1.289 +  {
   1.290 +  foreach $ScriptFile (@ScriptsToRun)
   1.291 +    {print "Running $ScriptFile\n";}
   1.292 +  }
   1.293 +
   1.294 +
   1.295 +unless (open(TESTRUNLOG,">TestRunLog.txt")) 
   1.296 +  {
   1.297 +  print STDERR "Can't open orphanedtests.txt: $!\n";
   1.298 +  exit 1;
   1.299 +  }
   1.300 +
   1.301 +unless (open(MASTERSCRIPT,">master.script")) 
   1.302 +  {
   1.303 +  print STDERR "Can't open master.script: $!\n";
   1.304 +  exit 1;
   1.305 +  }
   1.306 +unless (open(MASTERALLOCSCRIPT,">master_alloc.script")) 
   1.307 +  {
   1.308 +  print STDERR "Can't open master_alloc.script: $!\n";
   1.309 +  exit 1;
   1.310 +  }
   1.311 +
   1.312 +#create a master script file, this could be usefull for running on hardware.
   1.313 +foreach $ScriptFile (@ScriptsToRun)
   1.314 +  {
   1.315 +  $ScriptFile =~ s/\//\\/g;
   1.316 +  $ScriptFile =~ s/^[\s]*[a-z]://i;
   1.317 +
   1.318 +  my $regex = quotemeta $EpocCDrive;
   1.319 +  $ScriptFile =~ s/$regex//gi;
   1.320 +
   1.321 +  #alloc tests must be run under debug
   1.322 +  if($ScriptFile =~ /_alloc(_wm)?.script/i)
   1.323 +    {
   1.324 +    print MASTERALLOCSCRIPT "RUN_SCRIPT $ScriptFile\n";}
   1.325 +  else
   1.326 +    {print MASTERSCRIPT "RUN_SCRIPT $ScriptFile\n";}
   1.327 +
   1.328 +  }
   1.329 +close MASTERSCRIPT;
   1.330 +close MASTERALLOCSCRIPT;
   1.331 +
   1.332 +
   1.333 +#remove any alloc tests from list. Alloc tests must be run on debug builds, Code Cover tests 
   1.334 +#are only done against release builds.
   1.335 +if($CodeCover==1)
   1.336 +  {
   1.337 +  my @ScriptsToRunTmp=();
   1.338 +  foreach $ScriptFile (@ScriptsToRun)
   1.339 +    {
   1.340 +    if(!($ScriptFile =~ /_alloc(_wm)?.script/i))
   1.341 +	  {
   1.342 +      push @ScriptsToRunTmp, $ScriptFile;
   1.343 +	  }
   1.344 +	}
   1.345 +  @ScriptsToRun = @ScriptsToRunTmp;
   1.346 +  }
   1.347 +
   1.348 +
   1.349 +my $TotalScriptFiles = @ScriptsToRun;
   1.350 +if($TimesToRun > 1)
   1.351 +  {
   1.352 +  print "Running $TotalScriptFiles scripts  $TimesToRun times\n";
   1.353 +  }
   1.354 +else
   1.355 +  {
   1.356 +  print "Running $TotalScriptFiles scripts\n";
   1.357 +  }
   1.358 +
   1.359 +
   1.360 +my $RunCount=0;
   1.361 +for ($RunCount = 0; $RunCount < $TimesToRun; $RunCount++) 
   1.362 +  {
   1.363 +  my $ScriptsRun=0;
   1.364 +  #run each script
   1.365 +  foreach $ScriptFile (@ScriptsToRun)
   1.366 +    {
   1.367 +    $ScriptFile =~ s/\//\\/g;
   1.368 +    $ScriptFile =~ s/^[\s]*[a-z]://i;
   1.369 +
   1.370 +    my $regex = quotemeta $EpocCDrive;
   1.371 +    $ScriptFile =~ s/$regex//gi;
   1.372 +
   1.373 +
   1.374 +    #alloc tests must be run under debug
   1.375 +    if($ScriptFile =~ /_recog_alloc.script/i)
   1.376 +	    {
   1.377 +	    $Cmd = "$RecogUdebTestFramework $ScriptFile";
   1.378 +        }
   1.379 +    elsif($ScriptFile =~ /_nocap_alloc.script/i)
   1.380 +       	{
   1.381 +      	$Cmd = "$NoneUdebTestFramework $ScriptFile";
   1.382 +       	}
   1.383 +    elsif(($ScriptFile =~ /_alloc.script/i) || ($ScriptFile =~ /_alloc_wm.script/i) || ($ScriptFile =~ /_debug.script/i) || ($optctl{"d"}) )
   1.384 +       	{
   1.385 +      	$Cmd = "$UdebTestFramework $ScriptFile";
   1.386 +       	}
   1.387 +    elsif($ScriptFile =~ /_recog.script/i)
   1.388 +       	{
   1.389 +      	$Cmd = "$RecogUrelTestFramework $ScriptFile";
   1.390 +       	}
   1.391 +    elsif($ScriptFile =~ /_nocap.script/i)
   1.392 +       	{
   1.393 +      	$Cmd = "$NoneUrelTestFramework $ScriptFile";
   1.394 +       	}	
   1.395 +    elsif($ScriptFile =~ /_mmddcap.script/i)
   1.396 +       	{
   1.397 +      	$Cmd = "$MMDDCapUrelTestFramework $ScriptFile";
   1.398 +       	}
   1.399 +    elsif($ScriptFile =~ /_uecap.script/i)
   1.400 +       	{
   1.401 +      	$Cmd = "$UECapUrelTestFramework $ScriptFile";
   1.402 +       	}
   1.403 +    elsif($ScriptFile =~ /_secdisp.script/i)
   1.404 +      	{
   1.405 +     	#Take a backup of the existing ini files to .OLD and copy our ini files from the current dir to \epoc folders
   1.406 +	    if(!(system($copy_ini_secdisp)==0))
   1.407 +      	    {
   1.408 +      	    print "Failure to execute - $Cmd: $!";
   1.409 +      	    print TESTRUNLOG "Failure to execute - $Cmd: $!\n";
   1.410 +      	    }
   1.411 +	    $Cmd = "$UrelTestFramework $ScriptFile";
   1.412 +	    }
   1.413 +    elsif($ScriptFile =~ /\\te_/i)
   1.414 + 	    {
   1.415 + 	    $Cmd = "$UdebTestExecute $ScriptFile";
   1.416 + 	    }
   1.417 +    elsif($ScriptFile =~ /_te.script/i)
   1.418 + 	    {
   1.419 + 	    $Cmd = "$UdebTestExecute $ScriptFile";
   1.420 + 	    }
   1.421 +    else
   1.422 +     	{
   1.423 +       	$Cmd = "$UrelTestFramework $ScriptFile";
   1.424 +       	}
   1.425 +
   1.426 +    ($sec,my $min,my $hour,my $mday,my $mon,my $year,my $wday,my $yday,my $isdst) = localtime(time);  
   1.427 +    print "Starting script at $hour:$min:$sec\n";
   1.428 +    print TESTRUNLOG "Starting script at $hour:$min:$sec\n";
   1.429 +
   1.430 +    $ScriptsRun++;
   1.431 +    print "executing $Cmd ($ScriptsRun of $TotalScriptFiles)\n";
   1.432 +
   1.433 +    print TESTRUNLOG "executing $Cmd\n";
   1.434 +
   1.435 +    if(!(system($Cmd)==0))
   1.436 +      {
   1.437 +      print "Failure to execute - $Cmd: $!";
   1.438 +      print TESTRUNLOG "Failure to execute - $Cmd: $!\n";
   1.439 +      }
   1.440 +   if($ScriptFile =~ /_secdisp.script/i)
   1.441 +    {
   1.442 +    #Delete .ini files and rename  .OLD files to .ini files
   1.443 +    if(!(system($delete_ini_secdisp)==0))
   1.444 +         {
   1.445 +          print "Failure to execute - $Cmd: $!";
   1.446 +          print TESTRUNLOG "Failure to execute - $Cmd: $!\n";
   1.447 +          }
   1.448 +    } 
   1.449 +   
   1.450 +    }#foreach $ScriptFile (@ScriptsToRun)
   1.451 +
   1.452 +  if($TimesToRun > 1)
   1.453 +    {
   1.454 +    #now copy the results to a new numbered directory 
   1.455 +    $Cmd = "xcopy /E /R /I /Y P:\\epoc32\\wins\\c\\Logs\\TestResults P:\\epoc32\\wins\\c\\Logs\\TestResults$RunCount";
   1.456 +    print "executing $Cmd";
   1.457 +
   1.458 +    if(!(system($Cmd)==0))
   1.459 +      {
   1.460 +      print "Failure to execute - $Cmd: $!";
   1.461 +      print TESTRUNLOG "Failure to execute - $Cmd: $!\n";
   1.462 +      }
   1.463 +    }
   1.464 +  }
   1.465 +
   1.466 +
   1.467 +
   1.468 +$Cmd="del /F /Q $RecogniserCfgFile";
   1.469 +if($Debug==2)
   1.470 +  {print "executing $Cmd\n";}
   1.471 +system($Cmd);
   1.472 +
   1.473 +($sec,my $min,my $hour,my $mday,my $mon,my $year,my $wday,my $yday,my $isdst) = localtime(time);  
   1.474 +print "Test run completed at $hour:$min:$sec\n";
   1.475 +print TESTRUNLOG "Test run completed at $hour:$min:$sec\n";
   1.476 +
   1.477 +
   1.478 +__END__
   1.479 +
   1.480 +:endofperl
   1.481 +