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 #ifndef __G_LOG_MRT2_GLIB2_TEST
22 #define __G_LOG_MRT2_GLIB2_TEST
29 gboolean assert_failed = FALSE;
32 #define g_assert(expr) G_STMT_START{ if (expr) { } else {g_log (G_LOG_DOMAIN,G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, "file %s: line %d: assertion failed: (%s)", __FILE__, __LINE__, #expr);assert_failed = TRUE; }}G_STMT_END
35 void mrtLogHandler(const gchar* log_domain, GLogLevelFlags log_level,
36 const gchar* message, gpointer user_data)
39 fp = fopen("c:\\logtests.txt","a");
49 void mrtPrintHandler(const gchar *message)
52 fp = fopen("c:\\logtests.txt","a");
63 // This function is used to generate the xml file used bt ATS
64 void testResultXml(char *filename)
70 char xmlfilename[256];
72 time_t t = time(NULL);
74 struct tm *tm1 = localtime(&t);
76 char *atsinitmsg = "<test-report>\n\t<test-batch>";
78 char *atsbatchinit1 = \
80 \n\t\t\t<description></description>\
83 char *atsbatchinit2 = "</date>\
84 \n\t\t\t<factory>NA</factory>\
86 \n\t\t\t\t<name>NA</name>\
87 \n\t\t\t\t<version>NA</version>\
91 char *atsbatchresult= \
92 "\n\t\t<batch-result>\
93 \n\t\t\t<run-time>00:00:00</run-time>\
94 \n\t\t</batch-result>";
100 char *atstestinit = "\n\t\t<test-case time-stamp=\"00:00:00\">";
103 char *atscaseinit1 = \
104 "\n\t\t\t<case-init>\
105 \n\t\t\t\t<version></version>\
108 char *atscaseinit2 = "</id>\
109 \n\t\t\t\t<expected-result description=\"\">0</expected-result>\
110 \n\t\t\t</case-init>";
112 char *atscaseresult1= \
113 "\n\t\t\t<case-result status=\"";
115 char *atscaseresult2= "\">\
116 \n\t\t\t\t<actual-result>0</actual-result>\
117 \n\t\t\t\t<run-time>00:00:00</run-time>\
118 \n\t\t\t</case-result>";
120 char *atstestclose = "\n\t\t</test-case>";
122 /* Check and see if spd_logs/xml is existent or not. If not present create it */
126 dir = opendir("c:\\spd_logs");
128 mkdir("c:\\spd_logs",0777);
130 dir = opendir("c:\\spd_logs\\xml");
132 mkdir("c:\\spd_logs\\xml",0777);
134 // create the xml file name
135 strcpy(xmlfilename,"c:/spd_logs/xml/");
136 strcat(xmlfilename,filename);
137 strcat(xmlfilename,".xml");
139 strftime(time_buf,50,"%c",tm1);
142 strcpy(result,"FAILED");
144 strcpy(result,"PASSED");
146 fp = fopen(xmlfilename,"w");
150 fprintf(fp,"%s%s%s%s%s%s%s%s%s%s%s%s%s%s",atsinitmsg,atsbatchinit1,time_buf,atsbatchinit2,atstestinit,
151 atscaseinit1,filename,atscaseinit2,atscaseresult1,result,atscaseresult2,
152 atstestclose,atsbatchresult,atsclosemsg);
158 g_assert(FALSE && "Failed to create the xml file");