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\\app_name_log.txt"
22 #include "std_log_result.h"
23 #define LOG_FILENAME_LINE __FILE__, __LINE__
25 void create_xml(int result)
30 testResultXml("app_name_log");
34 int main (int argc, char *argv[])
36 char appName[] = "TestApp";
37 const char *retAppName;
39 g_set_application_name(appName);
41 retAppName = g_get_application_name();
43 if(retAppName != NULL)
45 if(g_strcmp0(appName, retAppName) !=0 )
47 std_log(LOG_FILENAME_LINE, "g_get_application_name returned wrong name");
53 std_log(LOG_FILENAME_LINE, "g_get_application_name returned NULL. errno = %d", errno);
57 g_free((void *)retAppName);
60 std_log(LOG_FILENAME_LINE,"Test Failed");
62 std_log(LOG_FILENAME_LINE,"Test Successful");