comparison log.d @ 1388:f22dcce89882

removed tracker code
author thomask
date Thu, 08 Mar 2007 16:19:31 +0000
parents 288d15cd3b95
children
comparison
equal deleted inserted replaced
1387:dd574a01148c 1388:f22dcce89882
367 } 367 }
368 }catch(Exception e){ 368 }catch(Exception e){
369 debug(drop) fwritefln(stderr, "dropped: %s", source); 369 debug(drop) fwritefln(stderr, "dropped: %s", source);
370 torture.remove(source); 370 torture.remove(source);
371 } 371 }
372 }
373 // asm-filter
374 int i = find(source, "asm_p");
375 if(i >= 0){
376 torture.remove(source);
372 } 377 }
373 } 378 }
374 torture.rehash; 379 torture.rehash;
375 380
376 writefln("dropped %s outdated tests (%s remaining)", totalCount - torture.length, torture.length); 381 writefln("dropped %s outdated tests (%s remaining)", totalCount - torture.length, torture.length);
548 553
549 stream.writeLine("<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>"); 554 stream.writeLine("<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>");
550 stream.writeLine("<html xmlns='http://www.w3.org/1999/xhtml' lang='en' xml:lang='en'>"); 555 stream.writeLine("<html xmlns='http://www.w3.org/1999/xhtml' lang='en' xml:lang='en'>");
551 556
552 stream.writeLine("<head><title>DStress - Torture: "~name~"</title><link rel='stylesheet' type='text/css' href='formate.css' /><meta name='author' content='Thomas K&#252;hne' /><meta name='date' content='" ~ dateString() ~ "' /><link rel='shortcut icon' href='data:image/gif;base64,R0lGODlhEAAQAKEAALMfEuWoLv///7MfEiH5BAEKAAMALAAAAAAQABAAAAIpnI95wN06nARqyvSQM6Gz+g3dOGofiabqygYmNYbv/FKLld04aEG+UgAAOw==' type='image/gif' /></head>"); 557 stream.writeLine("<head><title>DStress - Torture: "~name~"</title><link rel='stylesheet' type='text/css' href='formate.css' /><meta name='author' content='Thomas K&#252;hne' /><meta name='date' content='" ~ dateString() ~ "' /><link rel='shortcut icon' href='data:image/gif;base64,R0lGODlhEAAQAKEAALMfEuWoLv///7MfEiH5BAEKAAMALAAAAAAQABAAAAIpnI95wN06nARqyvSQM6Gz+g3dOGofiabqygYmNYbv/FKLld04aEG+UgAAOw==' type='image/gif' /></head>");
553 stream.writeLine("<body><center><h1>DStress - Torture: "~name~"</h1></center><center><small>by Thomas K&#252;hne &lt;thomas-at-kuehne.cn&gt;</small></center>"); 558 stream.writeLine("<body><center><h1>DStress - Torture: "~name~"</h1></center><center><small>by Thomas K&#252;hne &lt;<a href='mailto:thomas@kuehne.cn'>thomas@kuehne.cn</a>&gt;</small></center>");
554 stream.writeLine("<h2><a name='note' id='note'></a>Note</h2><blockquote>A detailed description of the testing and the used symbols can be found on the <a href='./dstress.html'>main page</a>.</blockquote>"); 559 stream.writeLine("<h2><a name='note' id='note'></a>Note</h2><blockquote>A detailed description of the testing and the used symbols can be found on the <a href='./dstress.html'>main page</a>.</blockquote>");
555 } 560 }
556 561
557 { // stats 562 { // stats
558 stream.writeLine("<h2><a name='summary' id='summary'></a>Summary</h2>"); 563 stream.writeLine("<h2><a name='summary' id='summary'></a>Summary</h2>");
664 stream.writeLine("</table>"); 669 stream.writeLine("</table>");
665 } 670 }
666 671
667 { // footer 672 { // footer
668 stream.writeLine("<div><br /><br /><hr /><a href='http://dstress.kuehne.cn/www/"~cleanName~".html'>http://dstress.kuehne.cn/www/"~cleanName~".html</a>&#160; &#160;" ~ dateString() ~ "</div>"); 673 stream.writeLine("<div><br /><br /><hr /><a href='http://dstress.kuehne.cn/www/"~cleanName~".html'>http://dstress.kuehne.cn/www/"~cleanName~".html</a>&#160; &#160;" ~ dateString() ~ "</div>");
669 stream.writeLine("<!-- Start of StatCounter Code -->"); 674 stream.writeLine("<center><a href='http://developer.berlios.de'><img src='http://developer.berlios.de/bslogo.php?group_id=2732' width='124' height='32' border='0' alt='BerliOS Logo' /></a></center>");
670 stream.writeLine("<script type='text/javascript'><!-- var sc_project=1337754; var sc_invisible=1; var sc_partition=12; var sc_security=\"a4a998fe\"; var sc_remove_link=1; //--> </script>");
671 stream.writeLine("<script type='text/javascript' src='http://www.statcounter.com/counter/counter_xhtml.js'></script><noscript><div class='statcounter'><img src='http://c13.statcounter.com/counter.php?sc_project=1337754&amp;amp;java=0&amp;amp;security=a4a998fe&amp;amp;invisible=1' class='statcounter' alt='counter' /></div></noscript>");
672 stream.writeLine("<!-- End of StatCounter Code -->");
673 675
674 stream.writeLine("</body></html>"); 676 stream.writeLine("</body></html>");
675 } 677 }
676 } 678 }
677 679