changeset 680:703d9b4505f9

Update dstress running script.
author Christian Kamm <kamm incasoftware de>
date Sat, 11 Oct 2008 21:46:19 +0200
parents dc078dd8d2e1
children ca4a816f2440
files tests/runtest
diffstat 1 files changed, 2 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/tests/runtest	Sat Oct 11 21:40:44 2008 +0200
+++ b/tests/runtest	Sat Oct 11 21:46:19 2008 +0200
@@ -23,10 +23,6 @@
 sed -e 's/find run -type f |/find run -type f -name "*\\\\.d" |/' -i Makefile
 sed -e 's/find norun -type f |/find norun -type f -name "*\\\\.d" |/' -i Makefile
 
-# make sure linker-generated bc files are deleted
-sed -e 's/find run -type f  -name "\*\\\\\.exe" |/find run -type f -name "*\\\\.exe" -o -name "*\\\\.bc" |/' -i Makefile
-sed -e 's/find norun -type f  -name "\*\\\\\.exe" |/find norun -type f -name "*\\\\.exe" -o -name "*\\\\.bc" |/' -i Makefile
-
 # impose more conservative constraints (10s and 256 MB)
 sed -e 's/crashRun 30 1000/crashRun 10 256/' -i dstress.c
 
@@ -54,7 +50,7 @@
 cd ..
 
 echo
-echo "Cleanup... (removing all .bc and .exe files)"
+echo "Cleanup... (removing all .o and .exe files)"
 echo
 
-find dstress -name "*\.bc" -o -name "*\.exe" -exec rm {} \;
+find dstress -name "*\.o" -o -name "*\.exe" -delete