Update contrib.
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
21 #include"std_log_result.h"
22 #define LOG_FILENAME_LINE __FILE__, __LINE__
27 string src1="!@#$%^&";
28 TPtrC8 des1((unsigned char*)" ",30);
29 int retval1, retval2,retval3,retval4,retval5,retval6,ret,size1=20;
30 retval1= StringToTptrc8(src1,des1);
31 printf("retval1 value is %d\n", retval1);
34 char *des2= new char[20];
35 retval2= Tptrc8ToCharp(src2,des2,size1);
36 printf("retval2 value is %d\n", retval2);
39 TPtr16 des3((unsigned short*)"",30);
40 wchar_t *aPtr1 = new wchar_t[20];
41 retval3= CharpToTptr16(src3,des3);
42 printf("retval3 value is %d\n", retval3);
46 retval4= Tptr16ToString(src4,des4);
47 printf("retval4 value is %d\n", retval4);
50 TPtrC16 des5((unsigned short*)"",30);
51 wchar_t *aPtr2= new wchar_t[20];
52 retval5= StringToTptrc16(src5,aPtr2,des5);
53 printf("retval5 value is %d\n", retval5);
56 char *des6= new char[30];
57 retval6= Tptrc16ToCharp(src6,des6,size1);
58 printf("retval6 value is %d\n", retval6);
60 ret= strncmp("!@#$%^&",(const char*)des6,7);
63 printf("integration_test15 PASSED\n");
67 printf("integration_tes15 FAILED\n");
76 testResultXml("integration_test_scenario15");