Update contrib.
2 * Copyright (c) 2008 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.
20 #ifndef _STD_LOG_FILE_H__
21 #define _STD_LOG_FILE_H__
29 //#define LOG_FILE "c:\\logs\\std_test_log.txt"
30 #define LOG_DIR "c:\\logs\\"
31 #define LOG_FILE_EXT "xml"
32 int assert_failed = 0;
35 #define LOG_FILE_EXT "xml"
36 #define LOG_FILE "std_test_log.txt"
37 int assert_failed = 0;
43 # define VERIFY(fn) gnutest &= (fn)
46 void std_log(const char *filename,const int lineno,const char* aformat,...)
51 fp = fopen(LOG_FILE,"a");
56 fprintf(fp,"%s - [%d] : ",filename,lineno);
57 vfprintf(fp,aformat,va);
69 fp = fopen(LOG_FILE, "a");
78 // This function is used to generate the xml file used bt ATS
79 void testResultXml(char *filename)
85 char xmlfilename[256];
87 time_t t = time(NULL);
89 struct tm *tm1 = localtime(&t);
91 char *atsinitmsg = "<test-report>\n\t<test-batch>";
93 char *atsbatchinit1 = \
95 \n\t\t\t<description></description>\
98 char *atsbatchinit2 = "</date>\
99 \n\t\t\t<factory>NA</factory>\
101 \n\t\t\t\t<name>NA</name>\
102 \n\t\t\t\t<version>NA</version>\
103 \n\t\t\t</component>\
104 \n\t\t</batch-init>";
106 char *atsbatchresult= \
107 "\n\t\t<batch-result>\
108 \n\t\t\t<run-time>00:00:00</run-time>\
109 \n\t\t</batch-result>";
111 char *atsclosemsg = \
113 \n</test-report>\n ";
115 char *atstestinit = "\n\t\t<test-case time-stamp=\"00:00:00\">";
118 char *atscaseinit1 = \
119 "\n\t\t\t<case-init>\
120 \n\t\t\t\t<version></version>\
123 char *atscaseinit2 = "</id>\
124 \n\t\t\t\t<expected-result description=\"\">0</expected-result>\
125 \n\t\t\t</case-init>";
127 char *atscaseresult1= \
128 "\n\t\t\t<case-result status=\"";
130 char *atscaseresult2= "\">\
131 \n\t\t\t\t<actual-result>0</actual-result>\
132 \n\t\t\t\t<run-time>00:00:00</run-time>\
133 \n\t\t\t</case-result>";
135 char *atstestclose = "\n\t\t</test-case>";
137 /* Check and see if spd_logs/xml is existent or not. If not present create it */
141 dir = opendir("c:\\spd_logs");
143 mkdir("c:\\spd_logs",0777);
145 dir = opendir("c:\\spd_logs\\xml");
147 mkdir("c:\\spd_logs\\xml",0777);
149 // create the xml file name
150 strcpy(xmlfilename,"c:/spd_logs/xml/");
151 strcat(xmlfilename,filename);
152 strcat(xmlfilename,".xml");
154 strftime(time_buf,50,"%c",tm1);
157 strcpy(result,"FAILED");
159 strcpy(result,"PASSED");
161 fp = fopen(xmlfilename,"w");
165 fprintf(fp,"%s%s%s%s%s%s%s%s%s%s%s%s%s%s",atsinitmsg,atsbatchinit1,time_buf,atsbatchinit2,atstestinit,
166 atscaseinit1,filename,atscaseinit2,atscaseresult1,result,atscaseresult2,
167 atstestclose,atsbatchresult,atsclosemsg);
173 g_assert(FALSE && "Failed to create the xml file");