1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
*
* Copyright (C) 2007 William Jon McCann <mccann@jhu.edu>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include <stdlib.h>
#include <glib/gi18n.h>
#include <glib.h>
#include <glib-object.h>
#include "s-common-address.h"
#include "s-common.h"
static gboolean no_fork = FALSE;
static gboolean verbose = FALSE;
static GOptionEntry entries[] = {
{"no-fork", 0, 0, G_OPTION_ARG_NONE, &no_fork, "Don't fork individual tests", NULL},
{"verbose", 0, 0, G_OPTION_ARG_NONE, &verbose, "Enable verbose output", NULL},
{NULL}
};
int
main (int argc, char **argv)
{
GOptionContext *context;
SRunner *r;
int failed;
GError *error;
failed = 0;
context = g_option_context_new ("");
g_option_context_add_main_entries (context, entries, NULL);
error = NULL;
g_option_context_parse (context, &argc, &argv, &error);
g_option_context_free (context);
if (error != NULL) {
g_warning ("%s", error->message);
g_error_free (error);
exit (EXIT_FAILURE);
}
r = srunner_create (suite_common_address ());
if (no_fork) {
srunner_set_fork_status (r, CK_NOFORK);
}
srunner_run_all (r, verbose ? CK_VERBOSE : CK_NORMAL);
failed = srunner_ntests_failed (r);
srunner_free (r);
r = srunner_create (suite_common ());
if (no_fork) {
srunner_set_fork_status (r, CK_NOFORK);
}
srunner_run_all (r, verbose ? CK_VERBOSE : CK_NORMAL);
failed |= srunner_ntests_failed (r);
srunner_free (r);
return failed != 0;
}
|