Changeset 441
- Timestamp:
- 04/02/07 16:02:33 (1 year ago)
- Files:
-
- other/dsss-testing-framework/results.sh (modified) (3 diffs)
- other/dsss-testing-framework/run.sh (added)
- other/dsss-testing-framework/test.sh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
other/dsss-testing-framework/results.sh
r420 r441 1 1 #!/bin/bash 2 PLATS="i586-pc-linux-gnu powerpc-860-linux-gnu" 2 PLATS="i586-pc-linux-gnu i586-pc-linux-gnu-dmd powerpc-860-linux-gnu i686-mingw32" 3 rm -rf logs 4 mkdir logs 3 5 4 6 echo '<HTML><head><title>DSSS test results</title></head><body>' … … 13 15 for i in `ls /opt/dsss-test/i586-pc-linux-gnu/tests | grep -v LIST` 14 16 do 17 mkdir -p logs/$i 18 15 19 echo '<tr><th>'$i'</th>' 16 20 for j in $PLATS 17 21 do 22 cp -f /opt/dsss-test/$j/tests/$i logs/$i/$j.txt 23 18 24 echo -n '<td bgcolor='\' 19 25 if [ "`grep $i /opt/dsss-test/$j/tests/LIST`" ] … … 21 27 echo -n 'green'\''>SUCCESS' 22 28 else 23 echo -n 'red'\''> FAILURE'29 echo -n 'red'\''><a href='\''logs/'$i'/'$j'.txt'\''>FAILURE</a>' 24 30 fi 25 31 echo '</td>' other/dsss-testing-framework/test.sh
r420 r441 2 2 ORIGPATH="$PATH" 3 3 4 for i in /opt/dsss-test/i586-pc-linux-gnu /opt/dsss-test/ powerpc-860-linux-gnu4 for i in /opt/dsss-test/i586-pc-linux-gnu /opt/dsss-test/i586-pc-linux-gnu-dmd /opt/dsss-test/powerpc-860-linux-gnu /opt/dsss-test/i686-mingw32 5 5 do 6 6 export PATH="$i/bin:$PATH" … … 25 25 ! "`echo $j | grep '^\+ '`" ] 26 26 then 27 echo $i $j 27 28 rm -rf /tmp/DSSS_* 28 dsss net assert $j >& $i/tests/$j29 dsss net assert $j -v >& $i/tests/$j 29 30 fi 30 31 done
