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 int retval =ESuccess; |
26 int retval =ESuccess; |
27 char* mycharstring = ""; |
27 char* mycharstring = ""; |
28 TBuf8 <1> myBuf; |
28 TBuf8 <1> myBuf; |
37 assert_failed = true; |
37 assert_failed = true; |
38 printf("chartotbuf8 positive2 Failed\n"); |
38 printf("chartotbuf8 positive2 Failed\n"); |
39 } |
39 } |
40 __UHEAP_MARKEND; |
40 __UHEAP_MARKEND; |
41 testResultXml("test_chartotbuf8_positive2"); |
41 testResultXml("test_chartotbuf8_positive2"); |
|
42 return 0; |
42 } |
43 } |