- Timestamp:
- 2010-07-29T08:57:01Z (14 years ago)
- Branches:
- master
- Children:
- 2fe5eb9
- Parents:
- 3963fdd
- Location:
- tests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/check.c
r3963fdd rb40e60d 3 3 #include <gmodule.h> 4 4 #include <check.h> 5 #include <locale.h> 5 6 #include "bitlbee.h" 6 7 #include "testsuite.h" … … 92 93 93 94 log_init(); 95 setlocale(LC_CTYPE, ""); 94 96 95 97 if (verbose) { -
tests/check_util.c
r3963fdd rb40e60d 161 161 END_TEST 162 162 163 START_TEST(test_http_encode) 164 char s[80]; 165 166 strcpy( s, "ee\xc3""\xab""ee!!..." ); 167 http_encode( s ); 168 fail_unless( strcmp( s, "ee%C3%ABee%21%21..." ) == 0 ); 169 END_TEST 170 163 171 Suite *util_suite (void) 164 172 { … … 174 182 tcase_add_test (tc_core, test_set_url_username_pwd); 175 183 tcase_add_test (tc_core, test_word_wrap); 184 tcase_add_test (tc_core, test_http_encode); 176 185 return s; 177 186 }
Note: See TracChangeset
for help on using the changeset viewer.