Update contrib.
1 // Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #undef G_DISABLE_ASSERT
21 #define LOG_FILE "c:\\logs\\utf8_string_log.txt"
22 #include "std_log_result.h"
23 #define LOG_FILENAME_LINE __FILE__, __LINE__
25 void create_xml(int result)
30 testResultXml("utf8_string_log");
34 int main (int argc, char *argv[])
36 gchar *src = "TestString";
40 p = g_utf8_strncpy(dest, src, strlen(src));
46 std_log(LOG_FILENAME_LINE,"g_utf8_strncpy didnt work as expected");
52 std_log(LOG_FILENAME_LINE,"g_utf8_strncpy's return value is invalid");
57 p = g_utf8_strrchr(src, strlen(src), 't');
58 if(strcmp(p, "tring"))
60 std_log(LOG_FILENAME_LINE,"g_utf8_strrchr didnt work as expected");
65 std_log(LOG_FILENAME_LINE,"Test Failed");
67 std_log(LOG_FILENAME_LINE,"Test Successful");