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.
17 /*This material, including documentation and any related
18 :* computer programs, is protected by copyright controlled by
19 * Nokia Corporation. All rights are reserved. Copying,
20 * including reproducing, storing, adapting or translating, any
21 * or all of this material requires the prior written consent of
22 * Nokia Corporation. This material also contains confidential
23 * information which may not be disclosed to others without the
24 * prior written consent of Nokia Corporation.
25 * ============================================================================
29 #ifndef _STD_LOG_FILE_H__
30 #define _STD_LOG_FILE_H__
37 #define LOG_FILE "c:\\logs\\std_test_log.txt"
38 #define LOG_DIR "c:\\logs\\"
39 #define LOG_FILE_EXT "xml"
40 bool assert_failed = false;
43 #define LOG_FILE_EXT "xml"
44 #define LOG_FILE "std_test_log.txt"
45 bool assert_failed = false;
51 # define VERIFY(fn) gnutest &= (fn)
54 void std_log(const char *filename,const int lineno,const char* aformat,...)
58 fp = fopen(LOG_FILE,"a");
63 fprintf(fp,"%s - [%d] : ",filename,lineno);
64 vfprintf(fp,aformat,va);
75 fp = fopen(LOG_FILE, "a");
84 // This function is used to generate the xml file used bt ATS
85 void testResultXml(char *filename)
91 char xmlfilename[256];
93 time_t t = time(NULL);
95 struct tm *tm1 = localtime(&t);
97 char *atsinitmsg = "<test-report>\n\t<test-batch>";
99 char *atsbatchinit1 = \
101 \n\t\t\t<description></description>\
103 char *atsbatchinit2 = "</date>\
104 \n\t\t\t<factory>NA</factory>\
106 \n\t\t\t\t<name>NA</name>\
107 \n\t\t\t\t<version>NA</version>\
108 \n\t\t\t</component>\
109 \n\t\t</batch-init>";
111 char *atsbatchresult= \
112 "\n\t\t<batch-result>\
113 \n\t\t\t<run-time>00:00:00</run-time>\
114 \n\t\t</batch-result>";
116 char *atsclosemsg = \
118 \n</test-report>\n ";
120 char *atstestinit = "\n\t\t<test-case time-stamp=\"00:00:00\">";
123 char *atscaseinit1 = \
124 "\n\t\t\t<case-init>\
125 \n\t\t\t\t<version></version>\
128 char *atscaseinit2 = "</id>\
129 \n\t\t\t\t<expected-result description=\"\">0</expected-result>\
130 \n\t\t\t</case-init>";
132 char *atscaseresult1= \
133 "\n\t\t\t<case-result status=\"";
135 char *atscaseresult2= "\">\
136 \n\t\t\t\t<actual-result>0</actual-result>\
137 \n\t\t\t\t<run-time>00:00:00</run-time>\
138 \n\t\t\t</case-result>";
140 char *atstestclose = "\n\t\t</test-case>";
142 // create the xml file name
144 sprintf(xmlfilename, "%s%s.%s", LOG_DIR, filename, LOG_FILE_EXT);
145 strftime(time_buf,50,"%c",tm1);
148 strcpy(result,"FAILED");
150 strcpy(result,"PASSED");
152 fp_result = fopen(xmlfilename,"w");
156 fprintf(fp_result,"%s%s%s%s%s%s%s%s%s%s%s%s%s%s",atsinitmsg,atsbatchinit1,time_buf,atsbatchinit2,atstestinit,
157 atscaseinit1,filename,atscaseinit2,atscaseresult1,result,atscaseresult2,
158 atstestclose,atsbatchresult,atsclosemsg);