Print stuff to stdout if something changes.
[oota-llvm.git] / utils / NightlyTest.pl
1 #!/usr/dcs/software/supported/bin/perl -w
2 #
3 # Program:  NightlyTest.pl
4 #
5 # Synopsis: Perform a series of tests which are designed to be run nightly.
6 #           This is used to keep track of the status of the LLVM tree, tracking
7 #           regressions and performance changes.  This generates one web page a
8 #           day which can be used to access this information.
9 #
10 # Syntax:   NightlyTest.pl [OPTIONS] [CVSROOT BUILDDIR WEBDIR]
11 #   where
12 # OPTIONS may include one or more of the following:
13 #  -nocheckout      Do not create, checkout, update, or configure
14 #                   the source tree.
15 #  -noremove        Do not remove the BUILDDIR after it has been built.
16 #  -notest          Do not even attempt to run the test programs. Implies
17 #                   -norunningtests.
18 #  -norunningtests  Do not run the Olden benchmark suite with
19 #                   LARGE_PROBLEM_SIZE enabled.
20 #  -parallel        Run two parallel jobs with GNU Make.
21 # CVSROOT is the CVS repository from which the tree will be checked out,
22 #  specified either in the full :method:user@host:/dir syntax, or
23 #  just /dir if using a local repo.
24 # BUILDDIR is the directory where sources for this test run will be checked out
25 #  AND objects for this test run will be built. This directory MUST NOT
26 #  exist before the script is run; it will be created by the cvs checkout
27 #  process and erased (unless -noremove is specified; see above.)
28 # WEBDIR is the directory into which the test results web page will be written,
29 #  AND in which the "index.html" is assumed to be a symlink to the most recent
30 #  copy of the results. This directory MUST exist before the script is run.
31 #
32 use POSIX qw(strftime);
33
34 my $HOME = $ENV{'HOME'};
35 my $CVSRootDir = $ENV{'CVSROOT'};
36    $CVSRootDir = "/home/vadve/shared/PublicCVS"
37     unless $CVSRootDir;
38 my $BuildDir   = "$HOME/buildtest";
39 my $WebDir     = "$HOME/cvs/testresults-X86";
40
41 # Calculate the date prefix...
42 @TIME = localtime;
43 my $DATE = sprintf "%4d-%02d-%02d", $TIME[5]+1900, $TIME[4]+1, $TIME[3];
44 my $DateString = strftime "%B %d, %Y", localtime;
45
46 sub ReadFile {
47   undef $/;
48   if (open (FILE, $_[0])) {
49     my $Ret = <FILE>;
50     close FILE;
51     return $Ret;
52   } else {
53     print "Could not open file '$_[0]' for reading!";
54     return "";
55   }
56 }
57
58 sub WriteFile {  # (filename, contents)
59   open (FILE, ">$_[0]") or die "Could not open file '$_[0]' for writing!";
60   print FILE $_[1];
61   close FILE;
62 }
63
64 sub GetRegex {   # (Regex with ()'s, value)
65   $_[1] =~ /$_[0]/m;
66   if (defined($1)) {
67     return $1;
68   }
69   return "?";
70 }
71
72 sub AddPreTag {  # Add pre tags around nonempty list, or convert to "none"
73   $_ = shift;
74   if (length) { return "<ul><pre>$_</pre></ul>"; } else { "<b>none</b><br>"; }
75 }
76
77 sub GetDir {
78   my $Suffix = shift;
79   opendir DH, $WebDir;
80   my @Result = reverse sort grep !/$DATE/, grep /[-0-9]+$Suffix/, readdir DH;
81   closedir DH;
82   return @Result;
83 }
84
85 # DiffFiles - Diff the current version of the file against the last version of
86 # the file, reporting things added and removed.  This is used to report, for
87 # example, added and removed warnings.  This returns a pair (added, removed)
88 #
89 sub DiffFiles {
90   my $Suffix = shift;
91   my @Others = GetDir $Suffix;
92   if (@Others == 0) {  # No other files?  We added all entries...
93     return (`cat $WebDir/$DATE$Suffix`, "");
94   }
95   # Diff the files now...
96   my @Diffs = split "\n", `diff $WebDir/$DATE$Suffix $WebDir/$Others[0]`;
97   my $Added   = join "\n", grep /^</, @Diffs;
98   my $Removed = join "\n", grep /^>/, @Diffs;
99   $Added =~ s/^< //gm;
100   $Removed =~ s/^> //gm;
101   return ($Added, $Removed);
102 }
103
104 # FormatTime - Convert a time from 1m23.45 into 83.45
105 sub FormatTime {
106   my $Time = shift;
107   if ($Time =~ m/([0-9]+)m([0-9.]+)/) {
108     $Time = sprintf("%7.4f", $1*60.0+$2);
109   }
110   return $Time;
111 }
112
113
114 # Command line argument settings...
115 my $NOCHECKOUT = 0;
116 my $NOREMOVE   = 0;
117 my $NOTEST     = 0;
118 my $NORUNNINGTESTS = 0;
119 my $MAKEOPTS   = "";
120
121
122 # Parse arguments...
123 while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
124   shift;
125   last if /^--$/;  # Stop processing arguments on --
126
127   # List command line options here...
128   if (/^-nocheckout$/)     { $NOCHECKOUT = 1; next; }
129   if (/^-noremove$/)       { $NOREMOVE   = 1; next; }
130   if (/^-notest$/)         { $NOTEST     = 1; $NORUNNINGTESTS = 1; next; }
131   if (/^-norunningtests$/) { $NORUNNINGTESTS = 1; next; }
132   if (/^-parallel$/)       { $MAKEOPTS   = "-j2 -l3.0"; next; }
133
134   print "Unknown option: $_ : ignoring!\n";
135 }
136
137 die "Must specify 0 or 3 options!" if (@ARGV != 0 and @ARGV != 3);
138
139 if (@ARGV == 3) {
140   $CVSRootDir = $ARGV[0];
141   $BuildDir   = $ARGV[1];
142   $WebDir     = $ARGV[2];
143 }
144
145 my $Template = "$BuildDir/llvm/utils/NightlyTestTemplate.html";
146 my $Prefix = "$WebDir/$DATE";
147
148 if (0) {
149   print "CVS Root = $CVSRootDir\n";
150   print "BuildDir = $BuildDir\n";
151   print "WebDir   = $WebDir\n";
152   print "Prefix   = $Prefix\n";
153 }
154
155
156 #
157 # Create the CVS repository directory
158 #
159 if (!$NOCHECKOUT) {
160   mkdir $BuildDir or die "Could not create CVS checkout directory $BuildDir!";
161 }
162 chdir $BuildDir or die "Could not change to CVS checkout directory $BuildDir!";
163
164
165 #
166 # Check out the llvm tree, saving CVS messages to the cvs log...
167 #
168 $CVSOPT = "";
169 $CVSOPT = "-z3" if $CVSRootDir =~ /^:ext:/; # Use compression if going over ssh.
170 system "(time -p cvs $CVSOPT -d $CVSRootDir co llvm) > $Prefix-CVS-Log.txt 2>&1"
171   if (!$NOCHECKOUT);
172
173 chdir "llvm" or die "Could not change into llvm directory!";
174
175 system "cvs up -P -d > /dev/null 2>&1" if (!$NOCHECKOUT);
176
177 # Read in the HTML template file...
178 my $TemplateContents = ReadFile $Template;
179
180
181 #
182 # Get some static statistics about the current state of CVS
183 #
184 my $CVSCheckoutTime = GetRegex "([0-9.]+)", `grep '^real' $Prefix-CVS-Log.txt`;
185 my $NumFilesInCVS = `grep '^U' $Prefix-CVS-Log.txt | wc -l` + 0;
186 my $NumDirsInCVS  = `grep '^cvs checkout' $Prefix-CVS-Log.txt | wc -l` + 0;
187 $LOC = GetRegex "([0-9]+) +total", `wc -l \`utils/getsrcs.sh\` | grep total`;
188
189 #
190 # Build the entire tree, saving build messages to the build log
191 #
192 if (!$NOCHECKOUT) {
193   system "(time -p ./configure --enable-jit --enable-spec --with-objroot=.) > $Prefix-Build-Log.txt 2>&1";
194
195   # Build the entire tree, capturing the output into $Prefix-Build-Log.txt
196   system "(time -p gmake $MAKEOPTS) >> $Prefix-Build-Log.txt 2>&1";
197 }
198
199
200 sub GetRegexNum {
201   my ($Regex, $Num, $Regex2, $File) = @_;
202   my @Items = split "\n", `grep '$Regex' $File`;
203   return GetRegex $Regex2, $Items[$Num];
204 }
205
206 #
207 # Get some statistics about the build...
208 #
209 my @Linked = split '\n', `grep Linking $Prefix-Build-Log.txt`;
210 my $NumExecutables = scalar(grep(/executable/, @Linked));
211 my $NumLibraries   = scalar(grep(!/executable/, @Linked));
212 my $NumObjects     = `grep '^Compiling' $Prefix-Build-Log.txt | wc -l` + 0;
213
214 my $ConfigTimeU = GetRegexNum "^user", 0, "([0-9.]+)", "$Prefix-Build-Log.txt";
215 my $ConfigTimeS = GetRegexNum "^sys", 0, "([0-9.]+)", "$Prefix-Build-Log.txt";
216 my $ConfigTime  = $ConfigTimeU+$ConfigTimeS;  # ConfigTime = User+System
217 my $ConfigWallTime = GetRegexNum "^real", 0,"([0-9.]+)","$Prefix-Build-Log.txt";
218
219 my $BuildTimeU = GetRegexNum "^user", 1, "([0-9.]+)", "$Prefix-Build-Log.txt";
220 my $BuildTimeS = GetRegexNum "^sys", 1, "([0-9.]+)", "$Prefix-Build-Log.txt";
221 my $BuildTime  = $BuildTimeU+$BuildTimeS;  # BuildTime = User+System
222 my $BuildWallTime = GetRegexNum "^real", 1, "([0-9.]+)","$Prefix-Build-Log.txt";
223
224 my $BuildError = "";
225 if (`grep '^gmake[^:]*: .*Error' $Prefix-Build-Log.txt | wc -l` + 0 ||
226     `grep '^gmake: \*\*\*.*Stop.' $Prefix-Build-Log.txt | wc -l`+0) {
227   $BuildError = "<h3><font color='red'>Build error: compilation " .
228                 "<a href=\"$DATE-Build-Log.txt\">aborted</a></font></h3>";
229 }
230
231 #
232 # Get warnings from the build
233 #
234 my @Warn = split "\n", `egrep 'warning:|Entering dir' $Prefix-Build-Log.txt`;
235 my @Warnings;
236 my $CurDir = "";
237
238 foreach $Warning (@Warn) {
239   if ($Warning =~ m/Entering directory \`([^\`]+)\'/) {
240     $CurDir = $1;                 # Keep track of directory warning is in...
241     if ($CurDir =~ m#$BuildDir/llvm/(.*)#) { # Remove buildir prefix if included
242       $CurDir = $1;
243     }
244   } else {
245     push @Warnings, "$CurDir/$Warning";     # Add directory to warning...
246   }
247 }
248 my $WarningsFile =  join "\n", @Warnings;
249 my $WarningsList = AddPreTag $WarningsFile;
250 $WarningsFile =~ s/:[0-9]+:/::/g;
251
252 # Emit the warnings file, so we can diff...
253 WriteFile "$WebDir/$DATE-Warnings.txt", $WarningsFile . "\n";
254 my ($WarningsAdded, $WarningsRemoved) = DiffFiles "-Warnings.txt";
255 $WarningsAdded = AddPreTag $WarningsAdded;
256 $WarningsRemoved = AddPreTag $WarningsRemoved;
257
258 # Output something to stdout if something has changed
259 print "ADDED   WARNINGS:\n$WarningsAdded\n\n" if (length $WarningsAdded);
260 print "REMOVED WARNINGS:\n$WarningsRemoved\n\n" if (length $WarningsRemoved);
261
262
263 #
264 # Get some statistics about CVS commits over the current day...
265 #
266 @CVSHistory = split "\n", `cvs history -D '1 day ago' -a -xAMROCGUW`;
267 #print join "\n", @CVSHistory; print "\n";
268
269 # Extract some information from the CVS history... use a hash so no duplicate
270 # stuff is stored.
271 my (%AddedFiles, %ModifiedFiles, %RemovedFiles, %UsersCommitted, %UsersUpdated);
272
273 my $DateRE = "[-:0-9 ]+\\+[0-9]+";
274
275 # Loop over every record from the CVS history, filling in the hashes.
276 foreach $File (@CVSHistory) {
277   my ($Type, $Date, $UID, $Rev, $Filename);
278   if ($File =~ /([AMRUGC]) ($DateRE) ([^ ]+) +([^ ]+) +([^ ]+) +([^ ]+)/) {
279     ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, $4, "$6/$5");
280   } elsif ($File =~ /([W]) ($DateRE) ([^ ]+) +([^ ]+) +([^ ]+)/) {
281     ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, $4, "$6/$5");
282   } elsif ($File =~ /([O]) ($DateRE) ([^ ]+) +([^ ]+)/) {
283     ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", "$4/");
284   } else {
285     print "UNMATCHABLE: $File\n";
286   }
287   # print "$File\nTy = $Type Date = '$Date' UID=$UID Rev=$Rev File = '$Filename'\n";
288
289   if ($Filename =~ /^llvm/) {
290     if ($Type eq 'M') {        # Modified
291       $ModifiedFiles{$Filename} = 1;
292       $UsersCommitted{$UID} = 1;
293     } elsif ($Type eq 'A') {   # Added
294       $AddedFiles{$Filename} = 1;
295       $UsersCommitted{$UID} = 1;
296     } elsif ($Type eq 'R') {   # Removed
297       $RemovedFiles{$Filename} = 1;
298       $UsersCommitted{$UID} = 1;
299     } else {
300       $UsersUpdated{$UID} = 1;
301     }
302   }
303 }
304
305 my $UserCommitList = join "\n", keys %UsersCommitted;
306 my $UserUpdateList = join "\n", keys %UsersUpdated;
307 my $AddedFilesList = AddPreTag join "\n", sort keys %AddedFiles;
308 my $ModifiedFilesList = AddPreTag join "\n", sort keys %ModifiedFiles;
309 my $RemovedFilesList = AddPreTag join "\n", sort keys %RemovedFiles;
310
311 my $TestError = 1;
312 my $SingleSourceProgramsTable;
313 my $MultiSourceProgramsTable;
314 my $ExternalProgramsTable;
315
316
317 sub TestDirectory {
318   my $SubDir = shift;
319
320   chdir "test/Programs/$SubDir" or
321     die "Could not change into test/Programs/$SubDir testdir!";
322
323   # Run the programs tests... creating a report.nightly.html file
324   if (!$NOTEST) {
325     system "gmake $MAKEOPTS report.nightly.html TEST=nightly "
326          . "> $Prefix-$SubDir-ProgramTest.txt 2>&1";
327   } else {
328     system "gunzip $Prefix-$SubDir-ProgramTest.txt.gz";
329   }
330
331   my $ProgramsTable;
332   if (`grep '^gmake[^:]: .*Error' $Prefix-$SubDir-ProgramTest.txt | wc -l` + 0){
333     $TestError = 1;
334     $ProgramsTable = "<font color=white><h2>Error running tests!</h2></font>";
335   } elsif (`grep '^gmake[^:]: .*No rule to make target' $Prefix-$SubDir-ProgramTest.txt | wc -l` + 0) {
336     $TestError = 1;
337     $ProgramsTable =
338       "<font color=white><h2>Makefile error running tests!</h2></font>";
339   } else {
340     $TestError = 0;
341     $ProgramsTable = ReadFile "report.nightly.html";
342
343     #
344     # Create a list of the tests which were run...
345     #
346     system "egrep 'TEST-(PASS|FAIL)' < $Prefix-$SubDir-ProgramTest.txt "
347          . "| sort > $Prefix-$SubDir-Tests.txt";
348   }
349
350   # Compress the test output
351   system "gzip -f $Prefix-$SubDir-ProgramTest.txt";
352   chdir "../../.." or die "Cannot return to parent directory!";
353   return $ProgramsTable;
354 }
355
356 # If we build the tree successfully, run the nightly programs tests...
357 if ($BuildError eq "") {
358   $SingleSourceProgramsTable = TestDirectory("SingleSource");
359   $MultiSourceProgramsTable = TestDirectory("MultiSource");
360   $ExternalProgramsTable = TestDirectory("External");
361   system "cat $Prefix-SingleSource-Tests.txt $Prefix-MultiSource-Tests.txt ".
362          " $Prefix-External-Tests.txt | sort > $Prefix-Tests.txt";
363 }
364
365 my ($TestsAdded, $TestsRemoved, $TestsFixed, $TestsBroken) = ("","","","");
366
367 if ($TestError) {
368   $TestsAdded   = "<b>error testing</b><br>";
369   $TestsRemoved = "<b>error testing</b><br>";
370   $TestsFixed   = "<b>error testing</b><br>";
371   $TestsBroken  = "<b>error testing</b><br>";
372 } else {
373   my ($RTestsAdded, $RTestsRemoved) = DiffFiles "-Tests.txt";
374
375   my @RawTestsAddedArray = split '\n', $RTestsAdded;
376   my @RawTestsRemovedArray = split '\n', $RTestsRemoved;
377
378   my %OldTests = map {GetRegex('TEST-....: (.+)', $_)=>$_}
379     @RawTestsRemovedArray;
380   my %NewTests = map {GetRegex('TEST-....: (.+)', $_)=>$_}
381     @RawTestsAddedArray;
382
383   foreach $Test (keys %NewTests) {
384     if (!exists $OldTests{$Test}) {  # TestAdded if in New but not old
385       $TestsAdded = "$TestsAdded$Test\n";
386     } else {
387       if ($OldTests{$Test} =~ /TEST-PASS/) {  # Was the old one a pass?
388         $TestsBroken = "$TestsBroken$Test\n";  # New one must be a failure
389       } else {
390         $TestsFixed = "$TestsFixed$Test\n";    # No, new one is a pass.
391       }
392     }
393   }
394   foreach $Test (keys %OldTests) {  # TestRemoved if in Old but not New
395     $TestsRemoved = "$TestsRemoved$Test\n" if (!exists $NewTests{$Test});
396   }
397
398   $TestsAdded   = AddPreTag $TestsAdded;
399   $TestsRemoved = AddPreTag $TestsRemoved;
400   $TestsFixed   = AddPreTag $TestsFixed;
401   $TestsBroken  = AddPreTag $TestsBroken;
402 }
403
404 print "TESTS ADDED:  \n$TestsAdded\n\n"   if (length $TestsAdded);
405 print "TESTS REMOVED:\n$TestsRemoved\n\n" if (length $TestsRemoved);
406 print "TESTS FIXED:  \n$TestsFixed\n\n"   if (length $TestsFixed);
407 print "TESTS BROKEN: \n$TestsBroken\n\n"  if (length $TestsBroken);
408
409
410 # If we built the tree successfully, runs of the Olden suite with
411 # LARGE_PROBLEM_SIZE on so that we can get some "running" statistics.
412 if ($BuildError eq "") {
413   my ($NATTime, $CBETime, $LLCTime, $JITTime, $OptTime, $BytecodeSize,
414       $MachCodeSize) = ("","","","","","","");
415   if (!$NORUNNINGTESTS) {
416     chdir "test/Programs/MultiSource/Benchmarks/Olden" or die "Olden tests moved?";
417
418     # Clean out previous results...
419     system "gmake $MAKEOPTS clean > /dev/null 2>&1";
420
421     # Run the nightly test in this directory, with LARGE_PROBLEM_SIZE enabled!
422     system "gmake $MAKEOPTS report.nightly.raw.out TEST=nightly " .
423            " LARGE_PROBLEM_SIZE=1 > /dev/null 2>&1";
424     system "cp report.nightly.raw.out $Prefix-Olden-tests.txt";
425   } else {
426     system "gunzip $Prefix-Olden-tests.txt.gz";
427   }
428
429   # Now we know we have $Prefix-Olden-tests.txt as the raw output file.  Split
430   # it up into records and read the useful information.
431   my @Records = split />>> ========= /, ReadFile "$Prefix-Olden-tests.txt";
432   shift @Records;  # Delete the first (garbage) record
433
434   # Loop over all of the records, summarizing them into rows for the running
435   # totals file.
436   my $WallTimeRE = "[A-Za-z0-9.: ]+\\(([0-9.]+) wall clock";
437   foreach $Rec (@Records) {
438     my $rNATTime = GetRegex 'TEST-RESULT-nat-time: real\s*([.0-9m]+)', $Rec;
439     my $rCBETime = GetRegex 'TEST-RESULT-cbe-time: real\s*([.0-9m]+)', $Rec;
440     my $rLLCTime = GetRegex 'TEST-RESULT-llc-time: real\s*([.0-9m]+)', $Rec;
441     my $rJITTime = GetRegex 'TEST-RESULT-jit-time: real\s*([.0-9m]+)', $Rec;
442     my $rOptTime = GetRegex "TEST-RESULT-compile: $WallTimeRE", $Rec;
443     my $rBytecodeSize = GetRegex 'TEST-RESULT-compile: *([0-9]+)', $Rec;
444     my $rMachCodeSize = GetRegex 'TEST-RESULT-jit-machcode: *([0-9]+).*bytes of machine code', $Rec;
445
446     $NATTime .= " " . FormatTime($rNATTime);
447     $CBETime .= " " . FormatTime($rCBETime);
448     $LLCTime .= " " . FormatTime($rLLCTime);
449     $JITTime .= " " . FormatTime($rJITTime);
450     $OptTime .= " $rOptTime";
451     $BytecodeSize .= " $rBytecodeSize";
452     $MachCodeSize .= " $rMachCodeSize";
453   }
454
455   # Now that we have all of the numbers we want, add them to the running totals
456   # files.
457   AddRecord($NATTime, "running_Olden_nat_time.txt");
458   AddRecord($CBETime, "running_Olden_cbe_time.txt");
459   AddRecord($LLCTime, "running_Olden_llc_time.txt");
460   AddRecord($JITTime, "running_Olden_jit_time.txt");
461   AddRecord($OptTime, "running_Olden_opt_time.txt");
462   AddRecord($BytecodeSize, "running_Olden_bytecode.txt");
463   AddRecord($MachCodeSize, "running_Olden_machcode.txt");
464
465   system "gzip -f $Prefix-Olden-tests.txt";
466 }
467
468
469
470
471 #
472 # Get a list of the previous days that we can link to...
473 #
474 my @PrevDays = map {s/.html//; $_} GetDir ".html";
475
476 splice @PrevDays, 20;  # Trim down list to something reasonable...
477
478 my $PrevDaysList =     # Format list for sidebar
479   join "\n  ", map { "<a href=\"$_.html\">$_</a><br>" } @PrevDays;
480
481 #
482 # Start outputing files into the web directory
483 #
484 chdir $WebDir or die "Could not change into web directory!";
485
486 # Add information to the files which accumulate information for graphs...
487 AddRecord($LOC, "running_loc.txt");
488 AddRecord($BuildTime, "running_build_time.txt");
489
490 #
491 # Rebuild the graphs now...
492 #
493 $GNUPLOT = "/usr/dcs/software/supported/bin/gnuplot";
494 $GNUPLOT = "gnuplot" if ! -x $GNUPLOT;
495 $PlotScriptFilename = "$BuildDir/llvm/utils/NightlyTest.gnuplot";
496 system ($GNUPLOT, $PlotScriptFilename);
497
498 #
499 # Remove the cvs tree...
500 #
501 system "rm -rf $BuildDir" if (!$NOCHECKOUT and !$NOREMOVE);
502
503 #
504 # Print out information...
505 #
506 if (0) {
507   print "DateString: $DateString\n";
508   print "CVS Checkout: $CVSCheckoutTime seconds\n";
509   print "Files/Dirs/LOC in CVS: $NumFilesInCVS/$NumDirsInCVS/$LOC\n";
510
511   print "Build Time: $BuildTime seconds\n";
512   print "Libraries/Executables/Objects built: $NumLibraries/$NumExecutables/$NumObjects\n";
513
514   print "WARNINGS:\n  $WarningsList\n";
515
516   print "Users committed: $UserCommitList\n";
517   print "Added Files: \n  $AddedFilesList\n";
518   print "Modified Files: \n  $ModifiedFilesList\n";
519   print "Removed Files: \n  $RemovedFilesList\n";
520
521   print "Previous Days =\n  $PrevDaysList\n";
522 }
523
524
525 #
526 # Output the files...
527 #
528
529 # Main HTML file...
530 my $Output;
531 eval "\$Output = <<ENDOFFILE;$TemplateContents\nENDOFFILE\n";
532 WriteFile "$DATE.html", $Output;
533
534 # Change the index.html symlink...
535 system "ln -sf $DATE.html index.html";
536
537 sub AddRecord {
538   my ($Val, $Filename) = @_;
539   my @Records;
540   if (open FILE, "$WebDir/$Filename") {
541     @Records = grep !/$DATE/, split "\n", <FILE>;
542     close FILE;
543   }
544   push @Records, "$DATE: $Val";
545   WriteFile "$WebDir/$Filename", (join "\n", @Records) . "\n";
546   return @Records;
547 }