Changeset 486
- Timestamp:
- 04/15/07 00:32:35 (1 year ago)
- Files:
-
- other/dsss-testing-framework/test.sh (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
other/dsss-testing-framework/test.sh
r441 r486 2 2 ORIGPATH="$PATH" 3 3 4 if [ 1 = 0 ] 5 then 4 6 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 7 do … … 27 29 echo $i $j 28 30 rm -rf /tmp/DSSS_* 29 dsss net assert$j -v >& $i/tests/$j31 dsss net assert --doc $j -v >& $i/tests/$j 30 32 fi 31 33 done … … 33 35 dsss installed >& $i/tests/LIST 34 36 done 37 fi 35 38 39 # Copy in docs 40 rm -rf docs 41 cp -af /opt/dsss-test/i586-pc-linux-gnu/share/doc docs 42 43 # And set up candydoc links 44 cd docs 45 cp -af dsss/sss/candydoc . 46 for i in * 47 do 48 if [ "$i" = "candydoc" ] 49 then 50 continue 51 fi 52 for j in `find $i -name candydoc` 53 do 54 rm -rf $j 55 ln -s `dirname $j | sed 's/[^\/]*/../g'`/candydoc $j 56 done 57 done 58
