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 void main() |
23 int main() |
24 { |
24 { |
25 __UHEAP_MARK; |
25 __UHEAP_MARK; |
26 { |
26 { |
27 wstring des((const wchar_t*)"hellohello"); |
27 wstring des((const wchar_t*)"hellohello"); |
28 TPtr8 src((unsigned char *)"My wide string",14 ,30); |
28 TPtr8 src((unsigned char *)"My wide string",14 ,30); |
41 printf("Test tptr8towstring boundary2 FAILURE\n"); |
41 printf("Test tptr8towstring boundary2 FAILURE\n"); |
42 } |
42 } |
43 } |
43 } |
44 __UHEAP_MARKEND; |
44 __UHEAP_MARKEND; |
45 testResultXml("test_tptr8towstring_boundary2"); |
45 testResultXml("test_tptr8towstring_boundary2"); |
|
46 |
|
47 return 0; |
46 } |
48 } |