diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-06-09 18:29:15 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-06-09 18:29:15 +0000 |
commit | 389174b098e4d106729d64bd782a29c4af20ad86 (patch) | |
tree | 6cdd396dca1c00262e67fdc2aab7c9926c0907a7 /utils/NightlyTestTemplate.html | |
parent | ff2c64c979a404faab95f2cc3288fc31f88157cc (diff) | |
download | external_llvm-389174b098e4d106729d64bd782a29c4af20ad86.zip external_llvm-389174b098e4d106729d64bd782a29c4af20ad86.tar.gz external_llvm-389174b098e4d106729d64bd782a29c4af20ad86.tar.bz2 |
Columnized the compilation statistics for easier reading.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14099 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/NightlyTestTemplate.html')
-rw-r--r-- | utils/NightlyTestTemplate.html | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/utils/NightlyTestTemplate.html b/utils/NightlyTestTemplate.html index b227b5d..ea8752c 100644 --- a/utils/NightlyTestTemplate.html +++ b/utils/NightlyTestTemplate.html @@ -60,20 +60,17 @@ <b>$NumDirsInCVS</b> dirs, <b>$NumFilesInCVS</b> files, <b>$LOC</b> lines of code, checked out in <b>$CVSCheckoutTime</b> seconds<br></ul> <li><a href="$DATE-Build-Log.txt">Compilation Log</a> -<ul> - $BuildError - Time to configure CVS tree: <b>$ConfigTime</b> seconds - (<b>$ConfigWallTime</b> seconds wall time)<br> - Time to build CVS tree: <b>$BuildTime</b> seconds - (<b>$BuildWallTime</b> seconds wall time)<br> - Time to run feature tests: <b>$FeatureTime</b> seconds - (<b>$FeatureWallTime</b> seconds wall time)<br> - Time to run regression tests: <b>$RegressionTime</b> seconds - (<b>$RegressionWallTime</b> seconds wall time)<br> - Number of object files compiled: <b>$NumObjects</b><br> - Number of libraries linked: <b>$NumLibraries</b><br> - Number of executables linked:<b> $NumExecutables</b><br> -</ul> +<table> +<tr><td><b>Item</b></td><td><b>CPU Time</b></td><td><b>Wall Clock</b></td></tr> +<tr><td>Configure CVS Tree</td><td>$ConfigTime</td><td>$ConfigWallTime</td></tr> +<tr><td>Build CVS Tree</td><td>$BuildTime</td><td>$BuildWallTime</td></tr> +<tr><td>Run Feature Tests</td><td>$FeatureTime</td><td>$FeatureWallTime</td></tr> +<tr><td>Run Regression Tests</td><td>$RegressionTime</td><td>$RegressionWallTime</td></tr> +</table></li> +<li>Number of object files compiled: <b>$NumObjects</b></li> +<li>Number of libraries linked: <b>$NumLibraries</b></li> +<li>Number of executables linked:<b> $NumExecutables</b></li> +<li>Build Error: $BuildError</li> </ul> <h2>Warnings during the build:</h2> |