From bcc112e37f0c1bb96da9ea4016c42a8d1498df60 Mon Sep 17 00:00:00 2001 From: Christian Kamm Date: Tue, 13 May 2008 21:41:25 +0200 Subject: [PATCH] [svn r224] clean up temporaries after dstress has run --- tests/runtest | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/runtest b/tests/runtest index dc8efefd..bc9c9aaf 100755 --- a/tests/runtest +++ b/tests/runtest @@ -48,3 +48,9 @@ echo DMD=$DMD make compile nocompile run norun > ../$TARGETFILE cd .. + +echo +echo "Cleanup... (removing all .bc and .exe files)" +echo + +find dstress -name "*\.bc" -o "*\.exe" -exec rm {} \;