diff options
author | Stefan Schmidt <stefan@osg.samsung.com> | 2016-05-11 10:17:11 +0200 |
---|---|---|
committer | Stefan Schmidt <stefan@osg.samsung.com> | 2016-05-11 10:17:11 +0200 |
commit | 3256a602823dd4bf59290380bc03e0010ec554d1 (patch) | |
tree | 83694ac28f86941abf670591038d7d65e3552728 | |
parent | 3e2e5b6111206f0abb1999e3944532b905e78a27 (diff) |
tests: eio: make sure we cleanup eio_test_xattr_set correctly
We missed tmpstr_del and shutting down eina here. This test segfaults from
time to time on Jenkins. Not sure this was the actual cause but better clean
it up anyway.
-rw-r--r-- | src/tests/eio/eio_test_xattr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tests/eio/eio_test_xattr.c b/src/tests/eio/eio_test_xattr.c index 0b1b298cb8..1a50c125e5 100644 --- a/src/tests/eio/eio_test_xattr.c +++ b/src/tests/eio/eio_test_xattr.c | |||
@@ -188,7 +188,9 @@ START_TEST(eio_test_xattr_set) | |||
188 | 188 | ||
189 | close(fd); | 189 | close(fd); |
190 | unlink(test_file_path); | 190 | unlink(test_file_path); |
191 | eina_tmpstr_del(test_file_path); | ||
191 | eio_shutdown(); | 192 | eio_shutdown(); |
193 | eina_shutdown(); | ||
192 | ecore_shutdown(); | 194 | ecore_shutdown(); |
193 | } | 195 | } |
194 | END_TEST | 196 | END_TEST |