utilitylibraries/libutils/tsrc/src/test_charptotptr16_negative1.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     int retval =ESuccess;
    26     int retval =ESuccess;
    27     char* mycharstring = "Hello Char String";
    27     char* mycharstring = "Hello Char String";
    28     TBufC16<10> buf;
    28     TBufC16<10> buf;
    29     TPtr16 myTptr = buf.Des();
    29     TPtr16 myTptr = buf.Des();
    30     wchar_t* temp = new wchar_t[30];
    30     wchar_t* temp = new wchar_t[30];
    31     retval = CharpToTptr16(mycharstring, myTptr);
    31     retval = CharpToTptr16(mycharstring,temp,myTptr);
    32 
    32 
    33     if (retval == EInsufficientMemory)
    33     if (retval == EInsufficientMemory)
    34     {
    34     {
    35     printf("charptotptr16 negative1 Passed\n");
    35     printf("charptotptr16 negative1 Passed\n");
    36     }
    36     }
    40     printf("charptotptr16 negative1 Failed\n");
    40     printf("charptotptr16 negative1 Failed\n");
    41     }      
    41     }      
    42     delete[] temp;
    42     delete[] temp;
    43     __UHEAP_MARKEND;
    43     __UHEAP_MARKEND;
    44     testResultXml("test_charptotptr16_negative1");
    44     testResultXml("test_charptotptr16_negative1");
    45     return 0;
       
    46 }
    45 }