eina: modify resource path
authorYeongJong Lee <yj34.lee@samsung.com>
Mon, 9 Jul 2018 05:36:22 +0000 (14:36 +0900)
committerYeongjong Lee <yj34.lee@samsung.com>
Fri, 13 Jul 2018 10:51:56 +0000 (19:51 +0900)
Change-Id: I9277491b9cfa4b61652918522d7a3b72fd332bdc

17 files changed:
TC/ecore/ecore_file/utc_ecore_file_can_exec.c
TC/eina/eina_main/utc_eina_shutdown.c
TC/eina/eina_simple_xml_parser/utc_eina_simple_xml_node_load.c
TC/eina/eina_simple_xml_parser/utc_eina_simple_xml_node_root_free.c
TC/eina/eina_simple_xml_parser/utc_eina_simple_xml_parse.c
TC/eina/eina_xattr/utc_eina_xattr_double_get.c
TC/eina/eina_xattr/utc_eina_xattr_double_set.c
TC/eina/eina_xattr/utc_eina_xattr_fd_ls.c
TC/eina/eina_xattr/utc_eina_xattr_get.c
TC/eina/eina_xattr/utc_eina_xattr_int_get.c
TC/eina/eina_xattr/utc_eina_xattr_int_set.c
TC/eina/eina_xattr/utc_eina_xattr_ls.c
TC/eina/eina_xattr/utc_eina_xattr_set.c
TC/eina/eina_xattr/utc_eina_xattr_string_get.c
TC/eina/eina_xattr/utc_eina_xattr_string_set.c
TC/eina/eina_xattr/utc_eina_xattr_value_fd_ls.c
TC/eina/eina_xattr/utc_eina_xattr_value_ls.c

index fe975949bf5c0025c72e81e765f9cca2f7663da1..a57079275497c30c7dff43943b2f9a2f9bc6459e 100644 (file)
@@ -6,7 +6,7 @@
 
 #include "../../utc_negative_unitest.h"
 
-#define EXAMPLE_FILE "utc_ecore_file_can_exec"
+#define EXAMPLE_FILE "utc_ecore"
 
 /**
  * @addtogroup ecore_file
index bfa62bf1b0d161353c5a23f322546d5f2ac638af..1dd86c824ed18c9a03c50bf197f4392990734f66 100644 (file)
@@ -38,7 +38,6 @@ teardown(void)
  */
 START_TEST(utc_eina_shutdown_p)
 {
-
    if (eina_shutdown() != 0)
      {
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
index 37a6261e786e168e48616b269f95500e0b647084..01e01653130a125c5adb799bd38f689d730d74af 100644 (file)
@@ -84,7 +84,7 @@ START_TEST(utc_eina_simple_xml_node_load_p2)
    char *buf = NULL;
    Eina_Simple_XML_Node_Root *node1 = NULL, *node2 = NULL;
    int result = TEST_FAIL;
-   FILE *f = fopen("sample.gpx", "rb");
+   FILE *f = fopen("eina_simple_xml_parser/sample.gpx", "rb");
 
    if (!f)
      {
index 9e2ae26b8703bbc909b6ccb8860ef9ce3bd85df5..2892349cce5641077c41a7b4b62864ad5f68a0f2 100644 (file)
@@ -50,7 +50,7 @@ START_TEST(utc_eina_simple_xml_node_root_free_p)
    char *buf = NULL;
    Eina_Simple_XML_Node_Root *node = NULL;
    int result = TEST_FAIL;
-   FILE *f = fopen("sample.gpx", "rb");
+   FILE *f = fopen("eina_simple_xml_parser/sample.gpx", "rb");
 
    if (!f)
      {
index 7fa5fd90348ce47c2ea6abcf56a6855ee2b7081a..b47afc1de60418bc94466b986b849bbdaedeebb2 100644 (file)
@@ -70,7 +70,7 @@ START_TEST(utc_eina_simple_xml_parse_p)
    long sz = 0;
    char *buf = NULL;
    int result = TEST_FAIL;
-   FILE *f = fopen("sample.gpx", "rb");
+   FILE *f = fopen("eina_simple_xml_parser/sample.gpx", "rb");
 
    if (!f)
      {
index 46fe625d54185ac613102201f5f6801337ff9912..234b51e65d9b45bead95ce49936500692f724e3d 100644 (file)
@@ -44,7 +44,7 @@ teardown(void)
 START_TEST(utc_eina_xattr_double_get_p_1)
 {
    FILE * file = NULL;
-   file = fopen("eina_file", "w");
+   file = fopen("_eina_file", "w");
    if (file == NULL)
      {
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
@@ -56,17 +56,17 @@ START_TEST(utc_eina_xattr_double_get_p_1)
    const char* data = "data";
    double PI = 3.14;
 
-   if (!eina_xattr_set("eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT))
+   if (!eina_xattr_set("_eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT))
      {
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
         return;
      }
 
    Eina_Bool is_set = EINA_FALSE;
-   is_set = eina_xattr_double_set("eina_file", "user.comment", PI, EINA_XATTR_INSERT);
+   is_set = eina_xattr_double_set("_eina_file", "user.comment", PI, EINA_XATTR_INSERT);
 
    double returned_double;
-   Eina_Bool is_get = eina_xattr_double_get("eina_file", "user.comment", &returned_double);
+   Eina_Bool is_get = eina_xattr_double_get("_eina_file", "user.comment", &returned_double);
    if ((is_set == EINA_TRUE) && (returned_double == PI) && (is_get == EINA_TRUE))
      {
         printf("[TEST_PASS]:: %s[%d] : Test has passed..\n", __FILE__, __LINE__);
index ccb8828592703388909ad386385d92aad57efea8..922c34d624a5fb36566e217fee17793225629a0a 100644 (file)
@@ -45,7 +45,7 @@ teardown(void)
 START_TEST(utc_eina_xattr_double_set_p_1)
 {
    FILE * file = NULL;
-   file = fopen("eina_file", "w");
+   file = fopen("_eina_file", "w");
    if (file == NULL)
      {
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
@@ -57,17 +57,17 @@ START_TEST(utc_eina_xattr_double_set_p_1)
    const char* data = "data";
    double PI = 3.14;
 
-   if (!eina_xattr_set("eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT))
+   if (!eina_xattr_set("_eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT))
      {
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
         return;
      }
 
    Eina_Bool is_set = EINA_FALSE;
-   is_set = eina_xattr_double_set("eina_file", "user.comment", PI, EINA_XATTR_INSERT);
+   is_set = eina_xattr_double_set("_eina_file", "user.comment", PI, EINA_XATTR_INSERT);
 
    double returned_double;
-   Eina_Bool is_get = eina_xattr_double_get("eina_file", "user.comment", &returned_double);
+   Eina_Bool is_get = eina_xattr_double_get("_eina_file", "user.comment", &returned_double);
    if ((is_set == EINA_TRUE) && (returned_double == PI) && (is_get == EINA_TRUE))
      {
         printf("[TEST_PASS]:: %s[%d] : Test has passed..\n", __FILE__, __LINE__);
index 5a778f3c252dcfce0466f105b5c0c81801de2aa0..77ca8ec3b615359cfd6648dd84aa11fa02e75fae 100644 (file)
@@ -41,7 +41,7 @@ teardown(void)
 START_TEST(utc_eina_xattr_fd_ls_p_1)
 {
    FILE * file = NULL;
-   file = fopen("eina_file", "w");
+   file = fopen("_eina_file", "w");
    if (file == NULL)
      {
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
@@ -51,7 +51,7 @@ START_TEST(utc_eina_xattr_fd_ls_p_1)
    const char* data = "data";
    int fd = fileno(file);
 
-   if (!eina_xattr_set("eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT))
+   if (!eina_xattr_set("_eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT))
      {
         fclose(file);
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
index b2d1857622af43aecffcf6ddc2b518e70803b05c..d18399c65de7357fd23234de4f3b1b326472552f 100644 (file)
@@ -43,7 +43,7 @@ teardown(void)
 START_TEST(utc_eina_xattr_get_p_1)
 {
    FILE *file = NULL;
-   file = fopen("eina_file", "w");
+   file = fopen("_eina_file", "w");
    if (file == NULL)
      {
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
@@ -54,8 +54,8 @@ START_TEST(utc_eina_xattr_get_p_1)
 
    const char* data = "data";
    ssize_t size = 0;
-   Eina_Bool is_set = eina_xattr_set("eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT);
-   const char* str = (const char*) eina_xattr_get("eina_file", "user.mime_type", &size);
+   Eina_Bool is_set = eina_xattr_set("_eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT);
+   const char* str = (const char*) eina_xattr_get("_eina_file", "user.mime_type", &size);
 
    if (str == NULL)
      {
@@ -96,7 +96,7 @@ END_TEST
 START_TEST(utc_eina_xattr_get_p_2)
 {
    FILE * file = NULL;
-   file = fopen("eina_file", "w");
+   file = fopen("_eina_file", "w");
    if (file == NULL)
      {
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
@@ -109,14 +109,14 @@ START_TEST(utc_eina_xattr_get_p_2)
    const char* new_data = "new_data";
    ssize_t size = 0;
 
-   if (!eina_xattr_set("eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT))
+   if (!eina_xattr_set("_eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT))
      {
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
         return;
      }
 
-   Eina_Bool is_set = eina_xattr_set("eina_file", "user.mime_type", (const void*) new_data, strlen(new_data) + sizeof(char), EINA_XATTR_REPLACE);
-   const char* str = (const char*) eina_xattr_get("eina_file", "user.mime_type", &size);
+   Eina_Bool is_set = eina_xattr_set("_eina_file", "user.mime_type", (const void*) new_data, strlen(new_data) + sizeof(char), EINA_XATTR_REPLACE);
+   const char* str = (const char*) eina_xattr_get("_eina_file", "user.mime_type", &size);
 
    if (str == NULL)
      {
index 3940a0b6973e4c308fa212f1d58c78c928d6ce2b..2d64868850d7f842cb27d11aa7007c1ce848e3c0 100644 (file)
@@ -44,7 +44,7 @@ teardown(void)
 START_TEST(utc_eina_xattr_int_get_p_1)
 {
    FILE * file = NULL;
-   file = fopen("eina_file", "w");
+   file = fopen("_eina_file", "w");
    if (file == NULL)
      {
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
@@ -56,17 +56,17 @@ START_TEST(utc_eina_xattr_int_get_p_1)
    const char* data = "data";
    int value = 777;
 
-   if (!eina_xattr_set("eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT))
+   if (!eina_xattr_set("_eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT))
      {
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
         return;
      }
 
    Eina_Bool is_set = EINA_FALSE;
-   is_set = eina_xattr_int_set("eina_file", "user.comment", value, EINA_XATTR_INSERT);
+   is_set = eina_xattr_int_set("_eina_file", "user.comment", value, EINA_XATTR_INSERT);
 
    int returned_int;
-   Eina_Bool is_get =  eina_xattr_int_get("eina_file", "user.comment", &returned_int);
+   Eina_Bool is_get =  eina_xattr_int_get("_eina_file", "user.comment", &returned_int);
    if ((is_set == EINA_TRUE) && (returned_int == value) && (is_get == EINA_TRUE))
      {
         printf("[TEST_PASS]:: %s[%d] : Test has passed..\n", __FILE__, __LINE__);
index bbdba7da666ae045b196c655baed42dbc910de12..37f8d0d5b9d6ef11156a7fea1addd0c13b5fc6c4 100644 (file)
@@ -45,7 +45,7 @@ teardown(void)
 START_TEST(utc_eina_xattr_int_set_p_1)
 {
    FILE * file = NULL;
-   file = fopen("eina_file", "w");
+   file = fopen("_eina_file", "w");
    if (file == NULL)
      {
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
@@ -57,17 +57,17 @@ START_TEST(utc_eina_xattr_int_set_p_1)
    const char* data = "data";
    int value = 777;
 
-   if (!eina_xattr_set("eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT))
+   if (!eina_xattr_set("_eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT))
      {
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
         return;
      }
 
    Eina_Bool is_set = EINA_FALSE;
-   is_set = eina_xattr_int_set("eina_file", "user.comment", value, EINA_XATTR_INSERT);
+   is_set = eina_xattr_int_set("_eina_file", "user.comment", value, EINA_XATTR_INSERT);
 
    int returned_int;
-   Eina_Bool is_get =  eina_xattr_int_get("eina_file", "user.comment", &returned_int);
+   Eina_Bool is_get =  eina_xattr_int_get("_eina_file", "user.comment", &returned_int);
    if ((is_set == EINA_TRUE) && (returned_int == value) && (is_get == EINA_TRUE))
      {
         printf("[TEST_PASS]:: %s[%d] : Test has passed..\n", __FILE__, __LINE__);
index 0c2b6751ec3a340c7d04d2afebe7306c9e13799e..8b5453b73a5ea9f25fcda0404093a17c65b8b37f 100644 (file)
@@ -40,7 +40,7 @@ teardown(void)
 START_TEST(utc_eina_xattr_ls_p_1)
 {
    FILE * file = NULL;
-   file = fopen("eina_file", "w");
+   file = fopen("_eina_file", "w");
    if (file == NULL)
      {
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
@@ -51,13 +51,13 @@ START_TEST(utc_eina_xattr_ls_p_1)
 
    const char* data = "data";
 
-   if (!eina_xattr_set("eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT))
+   if (!eina_xattr_set("_eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT))
      {
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
         return;
      }
 
-   Eina_Iterator* it = eina_xattr_ls("eina_file");
+   Eina_Iterator* it = eina_xattr_ls("_eina_file");
    if (it != NULL)
      {
         printf("[TEST_PASS]:: %s[%d] : Test has passed..\n", __FILE__, __LINE__);
index e84a57b6e67a3abeaa609b2929872b30fd876a68..8704a815a8f7d655bb965e4e8acff5d2de75a89b 100644 (file)
@@ -44,7 +44,7 @@ teardown(void)
 START_TEST(utc_UIFW_eina_xattr_set_p_1)
 {
    FILE *file = NULL;
-   file = fopen("eina_file", "w");
+   file = fopen("_eina_file", "w");
    if (file == NULL)
      {
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
@@ -53,8 +53,8 @@ START_TEST(utc_UIFW_eina_xattr_set_p_1)
 
    const char* data = "data";
    ssize_t size = 0;
-   Eina_Bool is_set = eina_xattr_set("eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT);
-   const char* str = (const char*) eina_xattr_get("eina_file", "user.mime_type", &size);
+   Eina_Bool is_set = eina_xattr_set("_eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT);
+   const char* str = (const char*) eina_xattr_get("_eina_file", "user.mime_type", &size);
 
    if ((is_set == EINA_FALSE) || (str == NULL) || (strcmp(data, str) != 0))
      {
@@ -92,7 +92,7 @@ END_TEST
 START_TEST(utc_UIFW_eina_xattr_set_p_2)
 {
    FILE * file = NULL;
-   file = fopen("eina_file", "w");
+   file = fopen("_eina_file", "w");
    if (file == NULL)
      {
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
@@ -103,15 +103,15 @@ START_TEST(utc_UIFW_eina_xattr_set_p_2)
    const char* new_data = "new_data";
    ssize_t size = 0;
 
-   if (!eina_xattr_set("eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT))
+   if (!eina_xattr_set("_eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT))
      {
         fclose(file);
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
         return;
      }
 
-   Eina_Bool is_set = eina_xattr_set("eina_file", "user.mime_type", (const void*) new_data, strlen(new_data) + sizeof(char), EINA_XATTR_REPLACE);
-   const char* str = (const char*) eina_xattr_get("eina_file", "user.mime_type", &size);
+   Eina_Bool is_set = eina_xattr_set("_eina_file", "user.mime_type", (const void*) new_data, strlen(new_data) + sizeof(char), EINA_XATTR_REPLACE);
+   const char* str = (const char*) eina_xattr_get("_eina_file", "user.mime_type", &size);
 
    if ((is_set == EINA_FALSE) || (str == NULL) || (strcmp(new_data, str) != 0))
      {
index 6ece65c4fe93957d54de08174a3c157105b2c62c..7e452dd2d63a380b93647caaa59d994bba4fbe6e 100644 (file)
@@ -43,7 +43,7 @@ teardown(void)
 START_TEST(utc_UIFW_eina_xattr_string_get_p_1)
 {
    FILE * file = NULL;
-   file = fopen("eina_file", "w");
+   file = fopen("_eina_file", "w");
    if (file == NULL)
      {
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
@@ -53,16 +53,16 @@ START_TEST(utc_UIFW_eina_xattr_string_get_p_1)
    const char* data = "data";
    const char* string = "string";
 
-   if (!eina_xattr_set("eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT))
+   if (!eina_xattr_set("_eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT))
      {
         fclose(file);
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
         return;
      }
 
-   eina_xattr_string_set("eina_file", "user.comment", string, EINA_XATTR_INSERT);
+   eina_xattr_string_set("_eina_file", "user.comment", string, EINA_XATTR_INSERT);
 
-   const char* returned_string = eina_xattr_string_get("eina_file", "user.comment");
+   const char* returned_string = eina_xattr_string_get("_eina_file", "user.comment");
    if ((returned_string != NULL) && (strcmp(returned_string, string) != 0))
      {
         fclose(file);
index 29e9be10b8eac85ebc2ecf05a7d9989c3fa48e22..055e356a324e38ec0e3d01c7e55b1fe6e3f607fb 100644 (file)
@@ -45,7 +45,7 @@ teardown(void)
 START_TEST(utc_UIFW_eina_xattr_string_set_p_1)
 {
    FILE * file = NULL;
-   file = fopen("eina_file", "w");
+   file = fopen("_eina_file", "w");
    if (file == NULL)
      {
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
@@ -55,7 +55,7 @@ START_TEST(utc_UIFW_eina_xattr_string_set_p_1)
    const char* data = "data";
    const char* string = "string";
 
-   if (!eina_xattr_set("eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT))
+   if (!eina_xattr_set("_eina_file", "user.mime_type", (const void*) data, strlen(data) + sizeof(char), EINA_XATTR_INSERT))
      {
         fclose(file);
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
@@ -63,9 +63,9 @@ START_TEST(utc_UIFW_eina_xattr_string_set_p_1)
      }
 
    Eina_Bool is_set = EINA_FALSE;
-   is_set = eina_xattr_string_set("eina_file", "user.comment", string, EINA_XATTR_INSERT);
+   is_set = eina_xattr_string_set("_eina_file", "user.comment", string, EINA_XATTR_INSERT);
 
-   const char* returned_string = eina_xattr_string_get("eina_file", "user.comment");
+   const char* returned_string = eina_xattr_string_get("_eina_file", "user.comment");
    if ((is_set == EINA_TRUE) && (strcmp(returned_string, string) != 0))
      {
         fclose(file);
index 22c97face2e6bc568c6b0661ac87680bc5768a58..cb1100d81e1b7db3c10f6790f420fc0b26293c09 100644 (file)
@@ -41,7 +41,7 @@ teardown(void)
 START_TEST(utc_UIFW_eina_xattr_value_fd_ls_p_1)
 {
    FILE * file = NULL;
-   file = fopen("eina_file", "w");
+   file = fopen("_eina_file", "w");
    if (file == NULL)
      {
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
@@ -51,8 +51,8 @@ START_TEST(utc_UIFW_eina_xattr_value_fd_ls_p_1)
    int fd = fileno(file);
 
    const char* str = "data";
-   eina_xattr_string_set("eina_file", "user.comment", str, EINA_XATTR_INSERT);
-   eina_xattr_string_set("eina_file", "user.mime_type", str, EINA_XATTR_INSERT);
+   eina_xattr_string_set("_eina_file", "user.comment", str, EINA_XATTR_INSERT);
+   eina_xattr_string_set("_eina_file", "user.mime_type", str, EINA_XATTR_INSERT);
 
    Eina_Iterator* it = eina_xattr_value_fd_ls(fd);
 
index 2348472a9e6f2246b60a2c908acbc696d4b5c0ee..850d0afb1c4ca8df0d974b10be763469e2b26b74 100644 (file)
@@ -40,7 +40,7 @@ teardown(void)
 START_TEST(utc_UIFW_eina_xattr_value_ls_p_1)
 {
    FILE * file = NULL;
-   file = fopen("eina_file", "w");
+   file = fopen("_eina_file", "w");
    if (file == NULL)
      {
         ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed..", __FILE__, __LINE__);
@@ -48,9 +48,9 @@ START_TEST(utc_UIFW_eina_xattr_value_ls_p_1)
      }
 
    const char* str = "data";
-   eina_xattr_string_set("eina_file", "user.comment", str, EINA_XATTR_INSERT);
+   eina_xattr_string_set("_eina_file", "user.comment", str, EINA_XATTR_INSERT);
 
-   Eina_Iterator* it = eina_xattr_value_ls("eina_file");
+   Eina_Iterator* it = eina_xattr_value_ls("_eina_file");
 
    if (it == NULL)
      {