From: antirez Date: Thu, 20 May 2010 19:20:10 +0000 (+0200) Subject: Don't exit with error in tests temp file cleanup if there are no files to clean X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/fd80abda0888564f26437834739ae456276771ff?hp=-c Don't exit with error in tests temp file cleanup if there are no files to clean --- fd80abda0888564f26437834739ae456276771ff diff --git a/tests/test_helper.tcl b/tests/test_helper.tcl index 86286cdb..a40602f3 100644 --- a/tests/test_helper.tcl +++ b/tests/test_helper.tcl @@ -50,8 +50,8 @@ proc s {args} { } proc cleanup {} { - exec rm -rf {*}[glob tests/tmp/redis.conf.*] - exec rm -rf {*}[glob tests/tmp/server.*] + catch {exec rm -rf {*}[glob tests/tmp/redis.conf.*]} + catch {exec rm -rf {*}[glob tests/tmp/server.*]} } proc main {} {