Lines Matching +full:test_i +full:. +full:zip
5 * All rights reserved.
7 #include "test.h"
10 #include <locale.h>
14 DEFINE_TEST(test_I) in DEFINE_TEST() argument
16 const char *reffile = "test_I.zip"; in DEFINE_TEST()
18 const char *envstr = "env LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 " in DEFINE_TEST()
19 "LC_CTYPE=en_US.UTF-8"; in DEFINE_TEST()
26 if (NULL == setlocale(LC_ALL, "en_US.UTF-8")) { in DEFINE_TEST()
27 skipping("en_US.UTF-8 locale not available on this system."); in DEFINE_TEST()
31 skipping("setlocale() not available on this system."); in DEFINE_TEST()
35 r = systemf("%s %s -I UTF-8 %s >test.out 2>test.err", envstr, testprog, in DEFINE_TEST()
38 assertNonEmptyFile("test.out"); in DEFINE_TEST()
39 assertEmptyFile("test.err"); in DEFINE_TEST()
41 assertTextFileContents("Hello, World!\n", "Γειά σου Κόσμε.txt"); in DEFINE_TEST()