comparison tests/runtest @ 208:086e1aa99557 trunk

[svn r224] clean up temporaries after dstress has run
author ChristianK
date Tue, 13 May 2008 21:41:25 +0200
parents 7949d3dd0341
children 0806379a5eca
comparison
equal deleted inserted replaced
207:e0b6040585b4 208:086e1aa99557
46 echo "run.sh, compile.sh, nocompile.sh and norun.sh as well as this one." 46 echo "run.sh, compile.sh, nocompile.sh and norun.sh as well as this one."
47 echo 47 echo
48 48
49 DMD=$DMD make compile nocompile run norun > ../$TARGETFILE 49 DMD=$DMD make compile nocompile run norun > ../$TARGETFILE
50 cd .. 50 cd ..
51
52 echo
53 echo "Cleanup... (removing all .bc and .exe files)"
54 echo
55
56 find dstress -name "*\.bc" -o "*\.exe" -exec rm {} \;