]> git.saurik.com Git - redis.git/commitdiff
fix cleaning up tmp folder
authorPieter Noordhuis <pcnoordhuis@gmail.com>
Fri, 14 May 2010 16:01:39 +0000 (18:01 +0200)
committerPieter Noordhuis <pcnoordhuis@gmail.com>
Fri, 14 May 2010 16:01:39 +0000 (18:01 +0200)
test/test_helper.tcl

index c58b95a2d638829dcbf965db2a628aca98de88a7..33c507f2e9f25291871f407163c3cecae6e23e97 100644 (file)
@@ -44,7 +44,8 @@ proc main {} {
     }
     
     # clean up tmp
-    exec rm -rf test/tmp/*
+    exec rm -rf {*}[glob test/tmp/redis.conf.*]
+    exec rm -rf {*}[glob test/tmp/server.*]
 }
 
 main