tests/eio: unlink tmpfiles after tests

Summary:
my tmpdir is full of thousands of these things
Depends on D9710

Reviewers: cedric

Reviewed By: cedric

Subscribers: #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D9711
This commit is contained in:
Mike Blumenkrantz 2019-08-23 13:22:17 -04:00
parent f9bd541e37
commit 81962dfa1b
2 changed files with 3 additions and 0 deletions

View File

@ -104,6 +104,7 @@ EFL_START_TEST(eio_test_eet_cipher_decipher)
ecore_main_loop_begin();
fail_if(!ef);
unlink(file);
eina_tmpstr_del(file);
eet_shutdown();
}
@ -197,6 +198,7 @@ EFL_START_TEST(eio_test_eet_data_cipher_decipher)
ecore_main_loop_begin();
fail_if(!ef);
unlink(file);
eina_tmpstr_del(file);
eet_shutdown();
}

View File

@ -84,6 +84,7 @@ EFL_START_TEST(eio_test_map_simple)
ecore_main_loop_begin();
fail_if(!ef);
unlink(file_path);
eina_tmpstr_del(file_path);
}
EFL_END_TEST