Initialize Tizen 2.3
[framework/multimedia/gstreamer0.10.git] / wearable / libs / gst / check / libcheck / check_log.h
1 /*
2  * Check: a unit test framework for C
3  * Copyright (C) 2001,2002 Arien Malec
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #ifndef CHECK_LOG_H
22 #define CHECK_LOG_H
23
24 void log_srunner_start (SRunner *sr);
25 void log_srunner_end (SRunner *sr);
26 void log_suite_start (SRunner *sr, Suite *s);
27 void log_suite_end (SRunner *sr, Suite *s);
28 void log_test_end (SRunner *sr, TestResult *tr);
29 void log_test_start (SRunner *sr, TCase *tc, TF *tfun);
30
31 void stdout_lfun (SRunner *sr, FILE *file, enum print_output,
32                   void *obj, enum cl_event evt);
33
34 void lfile_lfun (SRunner *sr, FILE *file, enum print_output,
35                   void *obj, enum cl_event evt);
36
37 void xml_lfun (SRunner *sr, FILE *file, enum print_output,
38                   void *obj, enum cl_event evt);
39
40 void subunit_lfun (SRunner *sr, FILE *file, enum print_output,
41                   void *obj, enum cl_event evt);
42
43 void srunner_register_lfun (SRunner *sr, FILE *lfile, int close,
44                             LFun lfun, enum print_output);
45
46 FILE *srunner_open_lfile (SRunner *sr);
47 FILE *srunner_open_xmlfile (SRunner *sr);
48 void srunner_init_logging (SRunner *sr, enum print_output print_mode);
49 void srunner_end_logging (SRunner *sr);
50
51 #endif /* CHECK_LOG_H */