Fix delete in csync_config

This commit is contained in:
Klaas Freitag 2012-11-23 11:26:10 +01:00
parent ea14dc1a75
commit 1147e77d67

View file

@ -30,7 +30,10 @@ static void teardown(void **state) {
rc = csync_destroy(csync);
assert_int_equal(rc, 0);
rc = system("rm -rf /tmp/check_csync");
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;