From 3fcc56ebbc3898f4eeb45779e8aec9d3bb046a11 Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Fri, 23 Nov 2012 11:43:39 +0100 Subject: [PATCH] Add removal of a test dir --- tests/csync_tests/check_csync_exclude.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/csync_tests/check_csync_exclude.c b/tests/csync_tests/check_csync_exclude.c index 461c36d6e9..295fdd659f 100644 --- a/tests/csync_tests/check_csync_exclude.c +++ b/tests/csync_tests/check_csync_exclude.c @@ -46,6 +46,8 @@ static void teardown(void **state) { rc = system("rm -rf /tmp/check_csync1"); assert_int_equal(rc, 0); + rc = system("rm -rf /tmp/check_csync2"); + assert_int_equal(rc, 0); *state = NULL; }