tests: eina_file: check if the fd is really 0 when we set close file to true

The return value from create_file_not_empty was saved but never checked if it
really is 0. Whcih should be the case if we call the function with file_close
true.
This commit is contained in:
Stefan Schmidt 2017-02-13 14:20:17 +01:00
parent d853b0ba68
commit 0daed02e89
1 changed files with 2 additions and 0 deletions

View File

@ -851,10 +851,12 @@ START_TEST(eina_test_file_unlink)
/*If file was not opened as 'eina'*/
fd = create_file_not_empty(tmpfile, &test_file_path, EINA_TRUE);
fail_if(fd != 0);
fail_if(!eina_file_unlink(test_file_path));
/*If file was opened as 'eina'*/
fd = create_file_not_empty(tmpfile, &test_file_path, EINA_TRUE);
fail_if(fd != 0);
fail_if(!eina_file_open(test_file_path, EINA_FALSE));
fail_if(!eina_file_unlink(test_file_path));