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\\list_env_log.txt"
22 #include "std_log_result.h"
23 #define LOG_FILENAME_LINE __FILE__, __LINE__
25 void create_xml(int result)
30 testResultXml("list_env_log");
34 int main (int argc, char *argv[])
36 const gchar *variable1 = "TEST_VAR1";
37 gchar *value1 = "testvalue1";
38 const gchar *variable2 = "TEST_VAR2";
39 gchar *value2 = "testvalue2";
42 guint no_of_variables =0;
43 gboolean found_var1 = 0, found_var2 = 0;
45 if(g_setenv (variable1, value1, TRUE) && g_setenv (variable2, value2, TRUE))
47 env_list = g_listenv();
51 no_of_variables = g_strv_length(env_list);
55 for(i = 0; i<no_of_variables; i++)
57 gchar *data = env_list[i];
59 if(g_strcmp0(data, variable1) == 0)
61 else if(g_strcmp0(data, variable2) == 0)
65 if(!(found_var1 && found_var2))
67 std_log(LOG_FILENAME_LINE, "g_listenv failed");
73 std_log(LOG_FILENAME_LINE, "g_listenv returned list is of length 0");
81 std_log(LOG_FILENAME_LINE, "g_listenv returned NULL");
87 std_log(LOG_FILENAME_LINE, "setting env variable failed. errno = %d", errno);
91 std_log(LOG_FILENAME_LINE,"Test Failed");
93 std_log(LOG_FILENAME_LINE,"Test Successful");