tests: eina_file: check if the fd is really 0 when we set close file to true
authorStefan Schmidt <stefan@osg.samsung.com>
Mon, 13 Feb 2017 13:20:17 +0000 (14:20 +0100)
committerStefan Schmidt <stefan@osg.samsung.com>
Mon, 13 Feb 2017 13:20:17 +0000 (14:20 +0100)
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.

src/tests/eina/eina_test_file.c

index dbdf075..f49f5b6 100644 (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));