utilitylibraries/libutils/tsrc/src/test_tbufc16towchar_maxsize.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     _LIT16(Kname,"123aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
    26     _LIT16(Kname,"123aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
    27     TBufC16<300>src(Kname);
    27     TBufC16<300>src(Kname);
    28     wchar_t * des= new wchar_t [300]; 
    28     wchar_t * des= new wchar_t [300]; 
    41     }
    41     }
    42     delete[] des;
    42     delete[] des;
    43     des = NULL;
    43     des = NULL;
    44     __UHEAP_MARKEND;
    44     __UHEAP_MARKEND;
    45     testResultXml("test_tbufc16towchar_maxsize");
    45     testResultXml("test_tbufc16towchar_maxsize");
    46 	return 0;
       
    47 }
    46 }