comparison tests/makewebstatistics.d @ 362:faa03bf92f0d trunk

[svn r383] Add explanations to dstress result table.
author ChristianK
date Mon, 14 Jul 2008 21:03:15 +0200
parents c9d5c711d65a
children 70faa6af1357
comparison
equal deleted inserted replaced
361:932229a851a4 362:faa03bf92f0d
376 // collect all the stats.base files into a large table 376 // collect all the stats.base files into a large table
377 BufferedFile index = new BufferedFile(std.path.join(basedir, "index.html"), FileMode.OutNew); 377 BufferedFile index = new BufferedFile(std.path.join(basedir, "index.html"), FileMode.OutNew);
378 scope(exit) index.close(); 378 scope(exit) index.close();
379 index.writefln(` 379 index.writefln(`
380 <html><body> 380 <html><body>
381 <h1>DStress results for x86-32 Linux.</h1>
382 <p>
383 In short, results are defined as follows
384 <ul>
385 <li>PASS: test passed and was expected to pass</li>
386 <li>XFAIL: test failed and was exprected to fail</li>
387 <li>FAIL: test failed but was expected to pass</li>
388 <li>XPASS: test passed but was expected to fail</li>
389 <li>ERROR: compiler, linker or test segfaulted</li>
390 </ul>
391 while the differences between tests are grouped into
392 <ul>
393 <li>Improvements: changed from FAIL, XPASS or ERROR to PASS or XFAIL</li>
394 <li>Regressions: changed from PASS or XFAIL to FAIL, XPASS or ERROR</li>
395 <li>Changes: changed within the good or bad group without crossing over</li>
396 </ul>
397 </p>
398 <br><br>
381 <table style="border-collapse:collapse; text-align:center;"> 399 <table style="border-collapse:collapse; text-align:center;">
382 <colgroup> 400 <colgroup>
383 <col style="border-right: medium solid black;"> 401 <col style="border-right: medium solid black;">
384 <col style="background-color: #AAFFAA;"> 402 <col style="background-color: #AAFFAA;">
385 <col style="background-color: #AAFFAA; border-right: thin solid black;"> 403 <col style="background-color: #AAFFAA; border-right: thin solid black;">