Changeset 679

Show
Ignore:
Timestamp:
07/20/07 16:00:47 (1 year ago)
Author:
Gregor
Message:

results.sh: Added 'sundry data'

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • other/dsss-testing-framework/results.sh

    r678 r679  
    44 
    55echo '<HTML><head><title>DSSS test results</title></head><body>' 
     6echo '<h1>DSSS test results</h1>' 
    67echo 'NOTE: Tango tests for Windows do not yet work.<br>' 
    78echo 'Tests run on '`date --iso`'<br>' 
     
    4445done 
    4546 
     47echo '<hr><h1>Sundry data</h1>' 
     48echo '<table border=1><tr><td></td><th>DSSS Version</th><th>GDC Version</th><th>DMD Version</th></tr>' 
     49for i in $PLATS 
     50do 
     51    echo '<tr><th>'$i'</th><td>' 
     52    /opt/dsss-test/$i/bin/dsss | head -n 1 
     53    echo '</td><td>' 
     54    /opt/dsss-test/$i/bin/gdc --version 2> /dev/null | head -n 1 
     55    echo '</td><td>' 
     56    /opt/dsss-test/$i/bin/dmd 2> /dev/null | head -n 1 
     57    echo '</td></tr>' 
     58done 
     59echo '</table>' 
     60 
    4661echo '</body></HTML>' 
    4762