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 _LIT(myTlitc,"hellohello");
28 wchar_t* myWchar = new wchar_t[30];
31 retval[0] = Tlitc16ToWchar(myTlitc,myWchar,size);
35 retval[1] = WcharToRbuf8(myWchar,buf);
38 retval[2] = Rbuf8ToWstring(buf,str);
41 retval[3]= WstringToTbuf16(str,tbuf);
43 wchar_t* myfinalstring= new wchar_t[15];
45 retval[4]= Tbuf16ToWchar(tbuf,myfinalstring,size_new);
47 for(int i=1; i<=4; i++)
50 printf("Conversion failed for retval\n",retval[i]);
53 if(!wcscmp(myWchar,myfinalstring))
55 printf("\n\n\nintegration_test_scenario28 success");
60 printf("\n\nintegration_test_scenario28 failure");
64 delete[] myfinalstring;
67 testResultXml("integration_test_scenario28");