utilitylibraries/libutils/tsrc/src/test_tptr16towstring_positive1.cpp
changeset 22 ddc455616bd6
parent 0 e4d67989cc36
child 45 4b03adbd26ca
child 57 2efc27d87e1c
equal deleted inserted replaced
18:47c74d1534e1 22:ddc455616bd6
    17 #include <stdio.h>
    17 #include <stdio.h>
    18 #include<e32std.h>
    18 #include<e32std.h>
    19 #include "libutils.h"
    19 #include "libutils.h"
    20 #include"std_log_result.h"
    20 #include"std_log_result.h"
    21 #define LOG_FILENAME_LINE __FILE__, __LINE__
    21 #define LOG_FILENAME_LINE __FILE__, __LINE__
    22 void main()
    22 int main()
    23 {
    23 {
    24     __UHEAP_MARK;	
    24     __UHEAP_MARK;	
    25     {
    25     {
    26     wstring des((const wchar_t*)"hello") ;
    26     wstring des((const wchar_t*)"hello") ;
    27     TPtr16  src((unsigned short *)"",1, 30);
    27     TPtr16  src((unsigned short *)"",1, 30);
    28     int retval=ESuccess;
    28     int retval=ESuccess;
    29     int size=30;
    29     //int size=30;
    30 //    int i=0;
    30 //    int i=0;
    31 //    while (i<=1000)
    31 //    while (i<=1000)
    32 //    {
    32 //    {
    33     retval= Tptr16ToWstring(src,des);
    33     retval= Tptr16ToWstring(src,des);
    34 //    i++;
    34 //    i++;
    45     printf("Test tptr16towstring positive FAILURE\n");
    45     printf("Test tptr16towstring positive FAILURE\n");
    46     }		
    46     }		
    47     }		
    47     }		
    48     __UHEAP_MARKEND;
    48     __UHEAP_MARKEND;
    49     testResultXml("test_tptr16towstring_positive1");
    49     testResultXml("test_tptr16towstring_positive1");
       
    50 	
       
    51 	return 0;
    50 }
    52 }