From 1488645e15f5a2cf829ecd5eae1b4873e60645fc Mon Sep 17 00:00:00 2001 From: Pieter Noordhuis Date: Fri, 14 May 2010 18:01:39 +0200 Subject: [PATCH] fix cleaning up tmp folder --- test/test_helper.tcl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/test_helper.tcl b/test/test_helper.tcl index c58b95a2..33c507f2 100644 --- a/test/test_helper.tcl +++ b/test/test_helper.tcl @@ -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