utilitylibraries/libutils/tsrc/src/test_wcharptotptrc8_boundary2.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     int retval =ESuccess;
    25     int retval =ESuccess;
    26     wchar_t* mywcharstring = L"Hello Widechar String";
    26     wchar_t* mywcharstring = L"Hello Widechar String";
    27     int wchar_length= wcslen(mywcharstring);
    27     int wchar_length= wcslen(mywcharstring);
    28     TPtrC8 myTptrc;
    28     TPtrC8 myTptrc;
    41     assert_failed = true;
    41     assert_failed = true;
    42     printf("wcharptotptrc8 boundar2 Failed\n");
    42     printf("wcharptotptrc8 boundar2 Failed\n");
    43     }  
    43     }  
    44     free(myptr);    
    44     free(myptr);    
    45     testResultXml("test_wcharptotptrc8_boundary2");
    45     testResultXml("test_wcharptotptrc8_boundary2");
    46 	
       
    47 	return 0;
       
    48 }
    46 }