utilitylibraries/libutils/tsrc/src/test_wstringtohbufc8_positive_unicode.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     wstring W(L"\xAE");
    26     wstring W(L"\xAE");
    27     __UHEAP_MARK;
    27     __UHEAP_MARK;
    28     HBufC8 *buf = HBufC8::NewMaxL(22);
    28     HBufC8 *buf = HBufC8::NewMaxL(22);
    38     printf("wstringtotptr8 Failed");
    38     printf("wstringtotptr8 Failed");
    39     }     
    39     }     
    40     delete buf;
    40     delete buf;
    41     __UHEAP_MARKEND;
    41     __UHEAP_MARKEND;
    42     testResultXml("test_wstringtohbufc8_positive_unicode");
    42     testResultXml("test_wstringtohbufc8_positive_unicode");
    43 	return 0;
       
    44 }
    43 }