ec7edaa1e1a0e97e774b48058dd90fd9d8113e38
[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 <CVSRootDir> <BuildDir> <WebDir>
11 #
12 use POSIX qw(strftime);
13
14 my $HOME = $ENV{HOME};
15 my $CVSRootDir = "/home/vadve/vadve/Research/DynOpt/CVSRepository";
16 my $BuildDir   = "$HOME/buildtest";
17 my $WebDir     = "$HOME/cvs/testresults-X86";
18
19 # Calculate the date prefix...
20 @TIME = localtime;
21 my $DATE = sprintf "%4d-%02d-%02d", $TIME[5]+1900, $TIME[4]+1, $TIME[3];
22 my $DateString = strftime "%B %d, %Y", localtime;
23
24 sub ReadFile {
25   if (open (FILE, $_[0])) {
26     my $Ret = <FILE>;
27     close FILE;
28     return $Ret;
29   } else {
30     print "Could not open file '$_[0]' for reading!";
31     return "";
32   }
33 }
34
35 sub WriteFile {  # (filename, contents)
36   open (FILE, ">$_[0]") or die "Could not open file '$_[0]' for writing!";
37   print FILE $_[1];
38   close FILE;
39 }
40
41 sub GetRegex {   # (Regex with ()'s, value)
42   $_[1] =~ /$_[0]/m;
43   return $1;
44 }
45
46 sub AddPreTag {  # Add pre tags around nonempty list, or convert to "none"
47   $_ = shift;
48   if (length) { return "<ul><pre>$_</pre></ul>"; } else { "<b>none</b><br>"; }
49 }
50
51 sub GetDir {
52   my $Suffix = shift;
53   opendir DH, $WebDir;
54   my @Result = reverse sort grep !/$DATE/, grep /[-0-9]+$Suffix/, readdir DH;
55   closedir DH;
56   return @Result;
57 }
58
59 # DiffFiles - Diff the current version of the file against the last version of
60 # the file, reporting things added and removed.  This is used to report, for
61 # example, added and removed warnings.  This returns a pair (added, removed)
62 #
63 sub DiffFiles {
64   my $Suffix = shift;
65   my @Others = GetDir $Suffix;
66   if (@Others == 0) {  # No other files?  We added all entries...
67     return (`cat $WebDir/$DATE$Suffix`, "");
68   }
69   # Diff the files now...
70   my @Diffs = split "\n", `diff $WebDir/$DATE$Suffix $WebDir/$Others[0]`;
71   my $Added   = join "\n", grep /^</, @Diffs;
72   my $Removed = join "\n", grep /^>/, @Diffs;
73   $Added =~ s/^< //gm;
74   $Removed =~ s/^> //gm;
75   return ($Added, $Removed);
76 }
77
78
79 # Command line argument settings...
80 my $NOCHECKOUT = 0;
81 my $NOREMOVE   = 0;
82 my $NOTEST     = 0;
83 my $MAKEOPTS   = "";
84
85 # Parse arguments...
86 while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
87   shift;
88   last if /^--$/;  # Stop processing arguments on --
89
90   # List command line options here...
91   if (/^-nocheckout$/) { $NOCHECKOUT = 1; next; }
92   if (/^-noremove$/)   { $NOREMOVE   = 1; next; }
93   if (/^-notest$/)     { $NOTEST     = 1; next; }
94   if (/^-parallel$/)   { $MAKEOPTS   = "-j2 -l3.0"; next; }
95
96   print "Unknown option: $_ : ignoring!\n";
97 }
98
99 die "Must specify 0 or 3 options!" if (@ARGV != 0 and @ARGV != 3);
100
101 # FIXME: This should just be utils/...
102 my $Template   = "$HOME/llvm/utils/NightlyTestTemplate.html";
103
104 if (@ARGV == 3) {
105   $CVSRootDir = $ARGV[0];
106   $BuildDir   = $ARGV[1];
107   $WebDir     = $ARGV[2];
108 }
109
110 my $Prefix = "$WebDir/$DATE";
111
112 if (0) {
113   print "CVS Root = $CVSRootDir\n";
114   print "BuildDir = $BuildDir\n";
115   print "WebDir   = $WebDir\n";
116   print "Prefix   = $Prefix\n";
117 }
118
119
120 #
121 # Create the CVS repository directory
122 #
123 if (!$NOCHECKOUT) {
124   mkdir $BuildDir or die "Could not create CVS checkout directory!";
125 }
126 chdir $BuildDir or die "Could not change to CVS checkout directory!";
127
128
129 #
130 # Check out the llvm tree, saving CVS messages to the cvs log...
131 #
132 system "(time -p cvs -d $CVSRootDir co llvm) > $Prefix-CVS-Log.txt 2>&1"
133   if (!$NOCHECKOUT);
134
135 chdir "llvm" or die "Could not change into llvm directory!";
136
137 system "cvs up -P -d > /dev/null 2>&1" if (!$NOCHECKOUT);
138
139 # Read in the HTML template file...
140 undef $/;
141 my $TemplateContents = ReadFile $Template;
142
143
144 #
145 # Get some static statistics about the current state of CVS
146 #
147 my $CVSCheckoutTime = GetRegex "([0-9.]+)", `grep '^real' $Prefix-CVS-Log.txt`;
148 my $NumFilesInCVS = `grep ^U $Prefix-CVS-Log.txt | wc -l` + 0;
149 my $NumDirsInCVS  = `grep '^cvs checkout' $Prefix-CVS-Log.txt | wc -l` + 0;
150 $LOC = GetRegex "([0-9]+) +total", `wc -l \`utils/getsrcs.sh\` | grep total`;
151
152 #
153 # Build the entire tree, saving build messages to the build log
154 #
155 if (!$NOCHECKOUT) {
156   # Change the Makefile.config to build into the local directory...
157   rename "Makefile.config", "Makefile.config.orig";
158   system "sed '/^LLVM_OBJ_DIR/d' < Makefile.config.orig > Makefile.config";
159   system "echo >> Makefile.config";
160   system "echo 'LLVM_OBJ_DIR := .' >> Makefile.config";
161
162   # Change the Makefile.config to not strip executables...
163   system "echo 'KEEP_SYMBOLS := 1' >> Makefile.config";
164
165   # Build the entire tree, capturing the output into $Prefix-Build-Log.txt
166   system "(time -p gmake $MAKEOPTS) > $Prefix-Build-Log.txt 2>&1";
167 }
168
169
170 #
171 # Get some statistics about the build...
172 #
173 my @Linked = split '\n', `grep Linking $Prefix-Build-Log.txt`;
174 my $NumExecutables = scalar(grep(/executable/, @Linked));
175 my $NumLibraries   = scalar(grep(!/executable/, @Linked));
176 my $NumObjects     = `grep '^Compiling' $Prefix-Build-Log.txt | wc -l` + 0;
177 my $BuildTimeU = GetRegex "([0-9.]+)", `grep '^user' $Prefix-Build-Log.txt`;
178 my $BuildTimeS = GetRegex "([0-9.]+)", `grep '^sys' $Prefix-Build-Log.txt`;
179 my $BuildWallTime = GetRegex "([0-9.]+)", `grep '^real' $Prefix-Build-Log.txt`;
180 my $BuildTime  = $BuildTimeU+$BuildTimeS;  # BuildTime = User+System
181 my $BuildError = "";
182 if (`grep '^gmake: .*Error' $Prefix-Build-Log.txt | wc -l` + 0) {
183   $BuildError = "<h3>Build error: compilation <a href=\"$DATE-Build-Log.txt\">"
184               . "aborted</a></h3>";
185 }
186
187
188 #
189 # Get warnings from the build
190 #
191 my @Warn = split "\n", `grep -E 'warning:|Entering dir' $Prefix-Build-Log.txt`;
192 my @Warnings;
193 my $CurDir = "";
194
195 foreach $Warning (@Warn) {
196   if ($Warning =~ m/Entering directory \`([^\`]+)\'/) {
197     $CurDir = $1;                 # Keep track of directory warning is in...
198     if ($CurDir =~ m|$BuildDir/llvm/(.*)|) { # Remove buildir prefix if included
199       $CurDir = $1;
200     }
201   } else {
202     push @Warnings, "$CurDir/$Warning";     # Add directory to warning...
203   }
204 }
205 my $WarningsFile =  join "\n", @Warnings;
206 my $WarningsList = AddPreTag $WarningsFile;
207 $WarningsFile =~ s/:[0-9]+:/::/g;
208
209 # Emit the warnings file, so we can diff...
210 WriteFile "$WebDir/$DATE-Warnings.txt", $WarningsFile . "\n";
211 my ($WarningsAdded, $WarningsRemoved) = DiffFiles "-Warnings.txt";
212 $WarningsAdded = AddPreTag $WarningsAdded;
213 $WarningsRemoved = AddPreTag $WarningsRemoved;
214
215
216 #
217 # Get some statistics about CVS commits over the current day...
218 #
219 @CVSHistory = split "\n", `cvs history -D '1 day ago' -a -xAMROCGUW`;
220 #print join "\n", @CVSHistory; print "\n";
221
222 # Extract some information from the CVS history... use a hash so no duplicate
223 # stuff is stored.
224 my (%AddedFiles, %ModifiedFiles, %RemovedFiles,
225     %UsersCommitted, %UsersUpdated);
226
227 my $DateRE = "[-:0-9 ]+\\+[0-9]+";
228
229 # Loop over every record from the CVS history, filling in the hashes.
230 foreach $File (@CVSHistory) {
231   my ($Type, $Date, $UID, $Rev, $Filename);
232   if ($File =~ /([AMRUGC])\s($DateRE)\s([^\s]+)\s+([0-9.]+)\s+([^\s]+)\s+([^\s]+)/) {
233     ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, $4, "$6/$5");
234   } elsif ($File =~ /([W])\s($DateRE)\s([^\s]+) +([^\s]+)\s+([^\s]+)/) {
235     ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, $4, "$6/$5");
236   } elsif ($File =~ /([O]) ($DateRE) ([^ ]+) +([^\s]+)/) {
237     ($Type, $Date, $UID, $Rev, $Filename) = ($1, $2, $3, "", "$4/");
238   } else {
239     print "UNMATCHABLE: $File\n";
240   }
241   # print "$File\nTy = $Type Date = '$Date' UID=$UID Rev=$Rev File = '$Filename'\n";
242
243   if ($Filename =~ /^llvm/) {
244     if ($Type eq 'M') {        # Modified
245       $ModifiedFiles{$Filename} = 1;
246       $UsersCommitted{$UID} = 1;
247     } elsif ($Type eq 'A') {   # Added
248       $AddedFiles{$Filename} = 1;
249       $UsersCommitted{$UID} = 1;
250     } elsif ($Type eq 'R') {   # Removed
251       $RemovedFiles{$Filename} = 1;
252       $UsersCommitted{$UID} = 1;
253     } else {
254       $UsersUpdated{$UID} = 1;
255     }
256   }
257 }
258
259 my $UserCommitList = join "\n", keys %UsersCommitted;
260 my $UserUpdateList = join "\n", keys %UsersUpdated;
261 my $AddedFilesList = AddPreTag join "\n", keys %AddedFiles;
262 my $ModifiedFilesList = AddPreTag join "\n", keys %ModifiedFiles;
263 my $RemovedFilesList = AddPreTag join "\n", keys %RemovedFiles;
264
265 my $TestError = 1;
266 my $ProgramsTable;
267
268 # If we build the tree successfully, the nightly programs tests...
269 if ($BuildError eq "") {
270   chdir "test/Programs" or die "Could not change into programs testdir!";
271
272   # Run the programs tests... creating a report.nightly.html file
273   if (!$NOTEST) {
274     system "gmake $MAKEOPTS report.nightly.html TEST=nightly "
275          . "RUNTIMELIMIT=300 > $Prefix-ProgramTest.txt 2>&1";
276   } else {
277     system "gunzip $Prefix-ProgramTest.txt.gz";
278   }
279
280   if (`grep '^gmake: .*Error' $Prefix-ProgramTest.txt | wc -l` + 0) {
281     $TestError = 1;
282     $ProgramsTable = "<font color=white><h2>Error running tests!</h2></font>";
283   } elsif (`grep '^gmake: .*No rule to make target' $Prefix-ProgramTest.txt | wc -l` + 0) {
284     $TestError = 1;
285     $ProgramsTable =
286       "<font color=white><h2>Makefile error running tests!</h2></font>";
287   } else {
288     $TestError = 0;
289     $ProgramsTable = ReadFile "report.nightly.html";
290
291     #
292     # Create a list of the tests which were run...
293     #
294     system "grep -E 'TEST-(PASS|FAIL)' < $Prefix-ProgramTest.txt "
295          . "| sort > $Prefix-Tests.txt";
296   }
297
298   # Compress the test output
299   system "gzip -f $Prefix-ProgramTest.txt";
300 }
301
302 my ($TestsAdded, $TestsRemoved, $TestsFixed, $TestsBroken) = ("","","","");
303
304 if ($TestError) {
305   $TestsAdded   = "<b>error testing</b><br>";
306   $TestsRemoved = "<b>error testing</b><br>";
307   $TestsFixed   = "<b>error testing</b><br>";
308   $TestsBroken  = "<b>error testing</b><br>";
309 } else {
310   my ($RTestsAdded, $RTestsRemoved) = DiffFiles "-Tests.txt";
311
312   my @RawTestsAddedArray = split '\n', $RTestsAdded;
313   my @RawTestsRemovedArray = split '\n', $RTestsRemoved;
314
315   my %OldTests = map {GetRegex('TEST-....: (.+)', $_)=>$_}
316     @RawTestsRemovedArray;
317   my %NewTests = map {GetRegex('TEST-....: (.+)', $_)=>$_}
318     @RawTestsAddedArray;
319
320   foreach $Test (keys %NewTests) {
321     if (!exists $OldTests{$Test}) {  # TestAdded if in New but not old
322       $TestsAdded = "$TestsAdded$Test\n";
323     } else {
324       if ($OldTests{$Test} =~ /TEST-PASS/) {  # Was the old one a pass?
325         $TestsBroken = "$TestsBroken$Test\n";  # New one must be a failure
326       } else {
327         $TestsFixed = "$TestsFixed$Test\n";    # No, new one is a pass.
328       }
329     }
330   }
331   foreach $Test (keys %OldTests) {  # TestRemoved if in Old but not New
332     $TestsRemoved = "$TestsRemoved$Test\n" if (!exists $NewTests{$Test});
333   }
334
335   $TestsAdded   = AddPreTag $TestsAdded;
336   $TestsRemoved = AddPreTag $TestsRemoved;
337   $TestsFixed   = AddPreTag $TestsFixed;
338   $TestsBroken  = AddPreTag $TestsBroken;
339 }
340
341 #
342 # Get a list of the previous days that we can link to...
343 #
344 my @PrevDays = map {s/.html//; $_} GetDir ".html";
345
346 splice @PrevDays, 20;  # Trim down list to something reasonable...
347
348 my $PrevDaysList =     # Format list for sidebar
349   join "\n  ", map { "<a href=\"$_.html\">$_</a><br>" } @PrevDays;
350
351
352 #
353 # Remove the cvs tree...
354 #
355 chdir $WebDir or die "Could not change into web directory!";
356 system "rm -rf $BuildDir" if (!$NOCHECKOUT and !$NOREMOVE);
357
358
359 #
360 # Print out information...
361 #
362 if (0) {
363   print "DateString: $DateString\n";
364   print "CVS Checkout: $CVSCheckoutTime seconds\n";
365   print "Files/Dirs/LOC in CVS: $NumFilesInCVS/$NumDirsInCVS/$LOC\n";
366
367   print "Build Time: $BuildTime seconds\n";
368   print "Libraries/Executables/Objects built: $NumLibraries/$NumExecutables/$NumObjects\n";
369
370   print "WARNINGS:\n  $WarningsList\n";
371
372
373   print "Users committed: $UserCommitList\n";
374   print "Added Files: \n  $AddedFilesList\n";
375   print "Modified Files: \n  $ModifiedFilesList\n";
376   print "Removed Files: \n  $RemovedFilesList\n";
377
378   print "Previous Days =\n  $PrevDaysList\n";
379 }
380
381
382 #
383 # Output the files...
384 #
385
386 # Main HTML file...
387 my $Output;
388 eval "\$Output = <<ENDOFFILE;$TemplateContents\nENDOFFILE\n";
389 WriteFile "$DATE.html", $Output;
390
391 # Change the index.html symlink...
392 system "ln -sf $DATE.html index.html";
393
394 sub AddRecord {
395   my ($Val, $Filename) = @_;
396   my @Records;
397   if (open FILE, $Filename) {
398     @Records = grep !/$DATE/, split "\n", <FILE>;
399     close FILE;
400   }
401   push @Records, "$DATE: $Val";
402   WriteFile $Filename, (join "\n", @Records) . "\n";
403   return @Records;
404 }
405
406 # Add information to the files which accumulate information for graphs...
407 AddRecord($LOC, "running_loc.txt");
408 AddRecord($BuildTime, "running_build_time.txt");