Finish C child bindings.
[third_party/subunit] / c / lib / child.c
1 /**
2  *
3  *  subunit C child-side bindings: report on tests being run.
4  *  Copyright (C) 2006  Robert Collins <robertc@robertcollins.net>
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  **/
20
21 #include <stdio.h>
22 #include <string.h>
23
24 /* these functions all flush to ensure that the test runner knows the action
25  * that has been taken even if the subsequent test etc takes a long time or
26  * never completes (i.e. a segfault).
27  */
28
29 void
30 subunit_test_start(char const * const name)
31 {
32   fprintf(stdout, "test: %s\n", name);
33   fflush(stdout);
34 }
35
36
37 void
38 subunit_test_pass(char const * const name)
39 {
40   fprintf(stdout, "success: %s\n", name);
41   fflush(stdout);
42 }
43
44
45 void
46 subunit_test_fail(char const * const name, char const * const error)
47 {
48   fprintf(stdout, "failure: %s [\n", name);
49   fprintf(stdout, "%s", error);
50   if (error[strlen(error) - 1] != '\n')
51     fprintf(stdout, "\n");
52   fprintf(stdout, "]\n");
53   fflush(stdout);
54 }
55
56
57 void
58 subunit_test_error(char const * const name, char const * const error)
59 {
60   fprintf(stdout, "error: %s [\n", name);
61   fprintf(stdout, "%s", error);
62   if (error[strlen(error) - 1] != '\n')
63     fprintf(stdout, "\n");
64   fprintf(stdout, "]\n");
65   fflush(stdout);
66 }