jpeg pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=7832bab2533afa07afc434074243933c5f37d020

commit 7832bab2533afa07afc434074243933c5f37d020
Author: Jean-Philippe Andre <jp.an...@samsung.com>
Date:   Tue Jan 19 15:19:51 2016 +0900

    Eina: Convert eina_test_file.c to UTF-8
    
    It was encoded as ISO-8859 (Latin-1) before.
    Maybe this will break these checks on Windows, but all of EFL APIs take
    UTF-8 strings, so it doesn't make sense to have ISO-8859 here.
---
 src/tests/eina/eina_test_file.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/tests/eina/eina_test_file.c b/src/tests/eina/eina_test_file.c
index 5012e06..33493f6 100644
--- a/src/tests/eina/eina_test_file.c
+++ b/src/tests/eina/eina_test_file.c
@@ -183,6 +183,8 @@ START_TEST(eina_file_direct_ls_simple)
     * 1) Do not end a directory with a period
     * 2) '*' (asterisk) is a reserved character
     * 3) ':' (colon) is a reserved character
+    *
+    * Note: UTF-8 symbol U+03BC is greek lower mu
     */
 
    const char *good_dirs[] =
@@ -195,7 +197,7 @@ START_TEST(eina_file_direct_ls_simple)
 #ifndef _WIN32
         "~$a@:-*$b!{}"
 #else
-        "~$a@�-#$b!{}"
+        "~$a@\u03bc-#$b!{}"
 #endif
      };
    const int good_dirs_count = sizeof(good_dirs) / sizeof(const char *);
@@ -257,7 +259,7 @@ START_TEST(eina_file_ls_simple)
 #ifndef _WIN32
         "~$b@:-*$a!{}"
 #else
-        "~$b@�-#$a!{}"
+        "~$b@\u03bc-#$a!{}"
 #endif
      };
    const int good_dirs_count = sizeof(good_dirs) / sizeof(const char *);

-- 


Reply via email to