equal
deleted
inserted
replaced
18 #include <stdio.h> |
18 #include <stdio.h> |
19 #include<e32std.h> |
19 #include<e32std.h> |
20 #include "libutils.h" |
20 #include "libutils.h" |
21 #include"std_log_result.h" |
21 #include"std_log_result.h" |
22 #define LOG_FILENAME_LINE __FILE__, __LINE__ |
22 #define LOG_FILENAME_LINE __FILE__, __LINE__ |
23 int main() |
23 void main() |
24 { |
24 { |
25 wstring des((const wchar_t*)"hellohello") ; |
25 wstring des((const wchar_t*)"hellohello") ; |
26 __UHEAP_MARK; |
26 __UHEAP_MARK; |
27 TPtr8 src((unsigned char *)"My wide string",14, 30); |
27 TPtr8 src((unsigned char *)"My wide string",14, 30); |
28 int retval=ESuccess; |
28 int retval=ESuccess; |
29 //int size=30; |
29 int size=30; |
30 retval= Tptr8ToWstring(src,des); |
30 retval= Tptr8ToWstring(src,des); |
31 |
31 |
32 int tptrc_len = src.Length(); |
32 int tptrc_len = src.Length(); |
33 int string_len = des.length(); |
33 int string_len = des.length(); |
34 if(retval ==ESuccess && tptrc_len == string_len ) |
34 if(retval ==ESuccess && tptrc_len == string_len ) |
40 assert_failed = true; |
40 assert_failed = true; |
41 printf("Test tptr8towstring boundary1 FAILURE\n"); |
41 printf("Test tptr8towstring boundary1 FAILURE\n"); |
42 } |
42 } |
43 __UHEAP_MARKEND; |
43 __UHEAP_MARKEND; |
44 testResultXml("test_tptr8towstring_boundary1"); |
44 testResultXml("test_tptr8towstring_boundary1"); |
45 |
|
46 return 0; |
|
47 } |
45 } |