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 TPtr8 des1((unsigned char *)"",30);
29 int retval1, retval2,retval3,retval4,retval5,retval6;
31 retval1 = StringToTptr8(src1, des1);
32 printf("retval1 value is %d\n", retval1);
35 char *des2= new char[30];
37 retval2= Tptr8ToChar(src2,des2,size1);
38 printf("retval2 value is %d\n", retval2);
42 retval3 = CharToTbuf8 (src3, des3);
43 printf("retval3 value is %d\n", retval3);
46 wchar_t * des4= new wchar_t [30];
48 retval4= Tbuf8ToWchar(src4,des4,size2);
49 printf("retval4 value is %d\n", retval4);
52 TPtr8 des5((unsigned char *)" ",50);
53 char * cPtr= new char[50];
54 retval5 = WcharpToTptr8(src5,cPtr,des5);
55 printf("retval5 value is %d\n", retval5);
59 retval6 = Tptr8ToString(src6, des6);
60 printf("retval6 value is %d\n", retval6);
62 ret= strncmp((char *)src1.c_str(),(char *)des6.c_str(),11);
65 printf("integration_test2 passed\n");
69 printf("integration_test2 failed\n");
77 testResultXml("integration_test_scenario2");