utilitylibraries/libutils/tsrc/src/test_tlit8towstring_boundary1.cpp
branchRCL_3
changeset 57 2efc27d87e1c
parent 56 acd3cd4aaceb
equal deleted inserted replaced
56:acd3cd4aaceb 57:2efc27d87e1c
    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     __UHEAP_MARK;
    25     __UHEAP_MARK;
    26     {
    26     {
    27     _LIT8(Kname,"HelloHelloHelloHelloHello");
    27     _LIT8(Kname,"HelloHelloHelloHelloHello");
    28     TBuf8 <25>src;
    28     TBuf8 <25>src;
    29     src.Copy(Kname);
    29     src.Copy(Kname);
    30     wstring str;
    30     wstring str;
    31     //int size=10;
    31     int size=10;
    32     int retval =ESuccess;
    32     int retval =ESuccess;
    33     retval= Tlitc8ToWstring(src,str);
    33     retval= Tlitc8ToWstring(src,str);
    34 
    34 
    35     if(retval == ESuccess)
    35     if(retval == ESuccess)
    36     {
    36     {
    42     printf(" Testtlit8towstring FAILURE\n");
    42     printf(" Testtlit8towstring FAILURE\n");
    43     }
    43     }
    44     }
    44     }
    45     __UHEAP_MARKEND;
    45     __UHEAP_MARKEND;
    46     testResultXml("Test_tlit8towstring_boundary1");
    46     testResultXml("Test_tlit8towstring_boundary1");
    47 	return 0;
       
    48 }
    47 }