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
22 #define LOG_FILE "c:\\logs\\base_name_log.txt"
23 #include "std_log_result.h"
24 #define LOG_FILENAME_LINE __FILE__, __LINE__
26 #define MAX_FILENAME_LENGTH 256
27 #define MAX_PATH_LENGTH 256
29 void create_xml(int result)
34 testResultXml("base_name_log");
38 int main (int argc, char *argv[])
40 char folder_name[] = "c:\\example\\test\\";
41 char file_name[] = "test.txt";
42 const gchar *ret_file_name;
44 gchar input_file[MAX_PATH_LENGTH];
45 sprintf(input_file, "%s%s", folder_name, file_name);
47 ret_file_name = g_basename(input_file);
49 if(ret_file_name != NULL)
51 if(g_strcmp0(ret_file_name, file_name) !=0 )
53 std_log(LOG_FILENAME_LINE, "g_basename returned wrong file name");
59 std_log(LOG_FILENAME_LINE, "g_basename returned NULL. errno = %d", errno);
65 std_log(LOG_FILENAME_LINE,"Test Failed");
67 std_log(LOG_FILENAME_LINE,"Test Successful");