2009-07-16 17:39:16 +00:00
|
|
|
/*
|
|
|
|
* Check: a unit test framework for C
|
|
|
|
* Copyright (C) 2001, 2002 Arien Malec
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-03 20:44:48 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2009-07-16 17:39:16 +00:00
|
|
|
*/
|
|
|
|
|
check: Apply GStreamer-specific patches
Reintroduced patches:
* Make sure that fail_if(1) actually fails
from commit 9f99d056a263e71a5e6181224829def906cf0226
New patches due to updated libcheck (based on 0.9.14):
* Checks in m4/check-checks.m4 to cater for new dependencies
* Conditional compile-time compat POSIX fallbacks for libcheck
* Avoid relative paths for libcheck header files
* Make timer_create() usage depend on posix timers, not librt
* Rely on default AX_PTHREAD behavior to allow HAVE_PTHREAD to be used
when checking for types and functions (like clock_gettime())
* Avoid double declaration of clock_gettime() when availabe outside of
librt by making compat clock_gettime() declaration conditional
* check 0.9.9 renamed _fail_unless() and 0.9.12 later renamed it again
to _ck_assert_failed(), so ASSERT_{CRITICAL,WARNING}() now calls this
function
* Remove libcheck fallback infrastructure for malloc(), realloc(),
gettimeofday() and snprintf() since either they appear to be
available or they introduce even more dependencies.
The result is an embedded check in gstreamer that has been tested by
running check tests in core, -base, -good, -bad, -ugly and rtsp-server
on Linux, OSX and Windows.
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=727826
2014-11-15 12:26:47 +00:00
|
|
|
#include "libcompat.h"
|
2009-07-16 17:39:16 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2014-12-14 11:54:32 +00:00
|
|
|
#include <internal-check.h>
|
2014-11-15 11:53:32 +00:00
|
|
|
#if ENABLE_SUBUNIT
|
2009-12-17 20:09:48 +00:00
|
|
|
#include <subunit/child.h>
|
|
|
|
#endif
|
2009-07-16 17:39:16 +00:00
|
|
|
|
|
|
|
#include "check_error.h"
|
|
|
|
#include "check_list.h"
|
|
|
|
#include "check_impl.h"
|
|
|
|
#include "check_log.h"
|
|
|
|
#include "check_print.h"
|
2009-12-17 20:09:48 +00:00
|
|
|
#include "check_str.h"
|
2009-07-16 17:39:16 +00:00
|
|
|
|
2014-11-15 11:53:32 +00:00
|
|
|
/*
|
|
|
|
* If a log file is specified to be "-", then instead of
|
|
|
|
* opening a file the log output is printed to stdout.
|
|
|
|
*/
|
|
|
|
#define STDOUT_OVERRIDE_LOG_FILE_NAME "-"
|
2009-07-16 17:39:16 +00:00
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
static void srunner_send_evt (SRunner * sr, void *obj, enum cl_event evt);
|
2009-07-16 17:39:16 +00:00
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
void
|
|
|
|
srunner_set_log (SRunner * sr, const char *fname)
|
2009-07-16 17:39:16 +00:00
|
|
|
{
|
|
|
|
if (sr->log_fname)
|
|
|
|
return;
|
|
|
|
sr->log_fname = fname;
|
|
|
|
}
|
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
int
|
|
|
|
srunner_has_log (SRunner * sr)
|
2009-07-16 17:39:16 +00:00
|
|
|
{
|
2014-11-15 11:53:32 +00:00
|
|
|
return srunner_log_fname (sr) != NULL;
|
2009-07-16 17:39:16 +00:00
|
|
|
}
|
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
const char *
|
|
|
|
srunner_log_fname (SRunner * sr)
|
2009-07-16 17:39:16 +00:00
|
|
|
{
|
2014-11-15 11:53:32 +00:00
|
|
|
/* check if log filename have been set explicitly */
|
|
|
|
if (sr->log_fname != NULL)
|
|
|
|
return sr->log_fname;
|
|
|
|
|
|
|
|
return getenv ("CK_LOG_FILE_NAME");
|
2009-07-16 17:39:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
void
|
|
|
|
srunner_set_xml (SRunner * sr, const char *fname)
|
2009-07-16 17:39:16 +00:00
|
|
|
{
|
|
|
|
if (sr->xml_fname)
|
|
|
|
return;
|
|
|
|
sr->xml_fname = fname;
|
|
|
|
}
|
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
int
|
|
|
|
srunner_has_xml (SRunner * sr)
|
2009-07-16 17:39:16 +00:00
|
|
|
{
|
2014-11-15 11:53:32 +00:00
|
|
|
return srunner_xml_fname (sr) != NULL;
|
2009-07-16 17:39:16 +00:00
|
|
|
}
|
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
const char *
|
|
|
|
srunner_xml_fname (SRunner * sr)
|
2009-07-16 17:39:16 +00:00
|
|
|
{
|
2014-11-15 11:53:32 +00:00
|
|
|
/* check if XML log filename have been set explicitly */
|
|
|
|
if (sr->xml_fname != NULL) {
|
|
|
|
return sr->xml_fname;
|
|
|
|
}
|
|
|
|
|
|
|
|
return getenv ("CK_XML_LOG_FILE_NAME");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
srunner_set_tap (SRunner * sr, const char *fname)
|
|
|
|
{
|
|
|
|
if (sr->tap_fname)
|
|
|
|
return;
|
|
|
|
sr->tap_fname = fname;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
srunner_has_tap (SRunner * sr)
|
|
|
|
{
|
|
|
|
return srunner_tap_fname (sr) != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
srunner_tap_fname (SRunner * sr)
|
|
|
|
{
|
|
|
|
/* check if tap log filename have been set explicitly */
|
|
|
|
if (sr->tap_fname != NULL) {
|
|
|
|
return sr->tap_fname;
|
|
|
|
}
|
|
|
|
|
|
|
|
return getenv ("CK_TAP_LOG_FILE_NAME");
|
2009-07-16 17:39:16 +00:00
|
|
|
}
|
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
void
|
|
|
|
srunner_register_lfun (SRunner * sr, FILE * lfile, int close,
|
|
|
|
LFun lfun, enum print_output printmode)
|
2009-07-16 17:39:16 +00:00
|
|
|
{
|
2014-11-15 11:53:32 +00:00
|
|
|
Log *l = (Log *) emalloc (sizeof (Log));
|
2009-07-16 17:39:16 +00:00
|
|
|
|
|
|
|
if (printmode == CK_ENV) {
|
2009-10-12 11:49:35 +00:00
|
|
|
printmode = get_env_printmode ();
|
2009-07-16 17:39:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
l->lfile = lfile;
|
|
|
|
l->lfun = lfun;
|
|
|
|
l->close = close;
|
|
|
|
l->mode = printmode;
|
2014-11-15 11:53:32 +00:00
|
|
|
check_list_add_end (sr->loglst, l);
|
2009-07-16 17:39:16 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
void
|
|
|
|
log_srunner_start (SRunner * sr)
|
2009-07-16 17:39:16 +00:00
|
|
|
{
|
|
|
|
srunner_send_evt (sr, NULL, CLSTART_SR);
|
|
|
|
}
|
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
void
|
|
|
|
log_srunner_end (SRunner * sr)
|
2009-07-16 17:39:16 +00:00
|
|
|
{
|
|
|
|
srunner_send_evt (sr, NULL, CLEND_SR);
|
|
|
|
}
|
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
void
|
|
|
|
log_suite_start (SRunner * sr, Suite * s)
|
2009-07-16 17:39:16 +00:00
|
|
|
{
|
|
|
|
srunner_send_evt (sr, s, CLSTART_S);
|
|
|
|
}
|
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
void
|
|
|
|
log_suite_end (SRunner * sr, Suite * s)
|
2009-07-16 17:39:16 +00:00
|
|
|
{
|
|
|
|
srunner_send_evt (sr, s, CLEND_S);
|
|
|
|
}
|
|
|
|
|
2009-12-17 20:09:48 +00:00
|
|
|
void
|
|
|
|
log_test_start (SRunner * sr, TCase * tc, TF * tfun)
|
|
|
|
{
|
|
|
|
char buffer[100];
|
2014-11-15 11:53:32 +00:00
|
|
|
|
2009-12-17 20:09:48 +00:00
|
|
|
snprintf (buffer, 99, "%s:%s", tc->name, tfun->name);
|
|
|
|
srunner_send_evt (sr, buffer, CLSTART_T);
|
|
|
|
}
|
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
void
|
|
|
|
log_test_end (SRunner * sr, TestResult * tr)
|
2009-07-16 17:39:16 +00:00
|
|
|
{
|
|
|
|
srunner_send_evt (sr, tr, CLEND_T);
|
|
|
|
}
|
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
static void
|
|
|
|
srunner_send_evt (SRunner * sr, void *obj, enum cl_event evt)
|
2009-07-16 17:39:16 +00:00
|
|
|
{
|
|
|
|
List *l;
|
|
|
|
Log *lg;
|
2014-11-15 11:53:32 +00:00
|
|
|
|
2009-07-16 17:39:16 +00:00
|
|
|
l = sr->loglst;
|
2014-11-15 11:53:32 +00:00
|
|
|
for (check_list_front (l); !check_list_at_end (l); check_list_advance (l)) {
|
|
|
|
lg = (Log *) check_list_val (l);
|
2009-10-12 11:49:35 +00:00
|
|
|
fflush (lg->lfile);
|
2009-07-16 17:39:16 +00:00
|
|
|
lg->lfun (sr, lg->lfile, lg->mode, obj, evt);
|
2009-10-12 11:49:35 +00:00
|
|
|
fflush (lg->lfile);
|
2009-07-16 17:39:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
void
|
|
|
|
stdout_lfun (SRunner * sr, FILE * file, enum print_output printmode,
|
|
|
|
void *obj, enum cl_event evt)
|
2009-07-16 17:39:16 +00:00
|
|
|
{
|
|
|
|
Suite *s;
|
2009-10-12 11:49:35 +00:00
|
|
|
|
2009-07-16 17:39:16 +00:00
|
|
|
switch (evt) {
|
2009-10-12 11:49:35 +00:00
|
|
|
case CLINITLOG_SR:
|
|
|
|
break;
|
|
|
|
case CLENDLOG_SR:
|
|
|
|
break;
|
|
|
|
case CLSTART_SR:
|
|
|
|
if (printmode > CK_SILENT) {
|
|
|
|
fprintf (file, "Running suite(s):");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CLSTART_S:
|
2014-11-15 11:53:32 +00:00
|
|
|
s = (Suite *) obj;
|
2009-10-12 11:49:35 +00:00
|
|
|
if (printmode > CK_SILENT) {
|
|
|
|
fprintf (file, " %s\n", s->name);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CLEND_SR:
|
|
|
|
if (printmode > CK_SILENT) {
|
|
|
|
/* we don't want a newline before printing here, newlines should
|
|
|
|
come after printing a string, not before. it's better to add
|
|
|
|
the newline above in CLSTART_S.
|
|
|
|
*/
|
|
|
|
srunner_fprint (file, sr, printmode);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CLEND_S:
|
|
|
|
break;
|
2009-12-17 20:09:48 +00:00
|
|
|
case CLSTART_T:
|
|
|
|
break;
|
2009-10-12 11:49:35 +00:00
|
|
|
case CLEND_T:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
eprintf ("Bad event type received in stdout_lfun", __FILE__, __LINE__);
|
2009-07-16 17:39:16 +00:00
|
|
|
}
|
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
|
2009-07-16 17:39:16 +00:00
|
|
|
}
|
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
void
|
2009-12-17 20:09:48 +00:00
|
|
|
lfile_lfun (SRunner * sr, FILE * file,
|
|
|
|
enum print_output printmode CK_ATTRIBUTE_UNUSED, void *obj,
|
|
|
|
enum cl_event evt)
|
2009-07-16 17:39:16 +00:00
|
|
|
{
|
|
|
|
TestResult *tr;
|
|
|
|
Suite *s;
|
2009-10-12 11:49:35 +00:00
|
|
|
|
2009-07-16 17:39:16 +00:00
|
|
|
switch (evt) {
|
2009-10-12 11:49:35 +00:00
|
|
|
case CLINITLOG_SR:
|
|
|
|
break;
|
|
|
|
case CLENDLOG_SR:
|
|
|
|
break;
|
|
|
|
case CLSTART_SR:
|
|
|
|
break;
|
|
|
|
case CLSTART_S:
|
2014-11-15 11:53:32 +00:00
|
|
|
s = (Suite *) obj;
|
2009-10-12 11:49:35 +00:00
|
|
|
fprintf (file, "Running suite %s\n", s->name);
|
|
|
|
break;
|
|
|
|
case CLEND_SR:
|
|
|
|
fprintf (file, "Results for all suites run:\n");
|
|
|
|
srunner_fprint (file, sr, CK_MINIMAL);
|
|
|
|
break;
|
|
|
|
case CLEND_S:
|
|
|
|
break;
|
2009-12-17 20:09:48 +00:00
|
|
|
case CLSTART_T:
|
|
|
|
break;
|
2009-10-12 11:49:35 +00:00
|
|
|
case CLEND_T:
|
2014-11-15 11:53:32 +00:00
|
|
|
tr = (TestResult *) obj;
|
2009-10-12 11:49:35 +00:00
|
|
|
tr_fprint (file, tr, CK_VERBOSE);
|
|
|
|
break;
|
|
|
|
default:
|
2009-12-17 20:09:48 +00:00
|
|
|
eprintf ("Bad event type received in lfile_lfun", __FILE__, __LINE__);
|
2009-07-16 17:39:16 +00:00
|
|
|
}
|
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
|
2009-07-16 17:39:16 +00:00
|
|
|
}
|
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
void
|
2009-12-17 20:09:48 +00:00
|
|
|
xml_lfun (SRunner * sr CK_ATTRIBUTE_UNUSED, FILE * file,
|
|
|
|
enum print_output printmode CK_ATTRIBUTE_UNUSED, void *obj,
|
|
|
|
enum cl_event evt)
|
2009-07-16 17:39:16 +00:00
|
|
|
{
|
|
|
|
TestResult *tr;
|
|
|
|
Suite *s;
|
2014-11-15 11:53:32 +00:00
|
|
|
static struct timespec ts_start = { 0, 0 };
|
2009-10-12 11:49:35 +00:00
|
|
|
static char t[sizeof "yyyy-mm-dd hh:mm:ss"] = { 0 };
|
2009-07-16 17:39:16 +00:00
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
if (t[0] == 0) {
|
2014-11-15 11:53:32 +00:00
|
|
|
struct timeval inittv;
|
2009-07-16 17:39:16 +00:00
|
|
|
struct tm now;
|
2014-11-15 11:53:32 +00:00
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
gettimeofday (&inittv, NULL);
|
2014-11-15 11:53:32 +00:00
|
|
|
clock_gettime (check_get_clockid (), &ts_start);
|
|
|
|
if (localtime_r ((const time_t *) &(inittv.tv_sec), &now) != NULL) {
|
|
|
|
strftime (t, sizeof ("yyyy-mm-dd hh:mm:ss"), "%Y-%m-%d %H:%M:%S", &now);
|
|
|
|
}
|
2009-07-16 17:39:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (evt) {
|
2009-10-12 11:49:35 +00:00
|
|
|
case CLINITLOG_SR:
|
|
|
|
fprintf (file, "<?xml version=\"1.0\"?>\n");
|
2014-11-15 11:53:32 +00:00
|
|
|
fprintf (file,
|
|
|
|
"<?xml-stylesheet type=\"text/xsl\" href=\"http://check.sourceforge.net/xml/check_unittest.xslt\"?>\n");
|
2009-10-12 11:49:35 +00:00
|
|
|
fprintf (file,
|
|
|
|
"<testsuites xmlns=\"http://check.sourceforge.net/ns\">\n");
|
|
|
|
fprintf (file, " <datetime>%s</datetime>\n", t);
|
|
|
|
break;
|
|
|
|
case CLENDLOG_SR:
|
2014-11-15 11:53:32 +00:00
|
|
|
{
|
|
|
|
struct timespec ts_end = { 0, 0 };
|
|
|
|
unsigned long duration;
|
|
|
|
|
|
|
|
/* calculate time the test were running */
|
|
|
|
clock_gettime (check_get_clockid (), &ts_end);
|
|
|
|
duration = (unsigned long) DIFF_IN_USEC (ts_start, ts_end);
|
|
|
|
fprintf (file, " <duration>%lu.%06lu</duration>\n",
|
|
|
|
duration / US_PER_SEC, duration % US_PER_SEC);
|
2009-10-12 11:49:35 +00:00
|
|
|
fprintf (file, "</testsuites>\n");
|
2014-11-15 11:53:32 +00:00
|
|
|
}
|
2009-10-12 11:49:35 +00:00
|
|
|
break;
|
|
|
|
case CLSTART_SR:
|
|
|
|
break;
|
|
|
|
case CLSTART_S:
|
2014-11-15 11:53:32 +00:00
|
|
|
s = (Suite *) obj;
|
2009-10-12 11:49:35 +00:00
|
|
|
fprintf (file, " <suite>\n");
|
2014-11-15 11:53:32 +00:00
|
|
|
fprintf (file, " <title>");
|
|
|
|
fprint_xml_esc (file, s->name);
|
|
|
|
fprintf (file, "</title>\n");
|
2009-10-12 11:49:35 +00:00
|
|
|
break;
|
|
|
|
case CLEND_SR:
|
|
|
|
break;
|
|
|
|
case CLEND_S:
|
|
|
|
fprintf (file, " </suite>\n");
|
|
|
|
break;
|
2009-12-17 20:09:48 +00:00
|
|
|
case CLSTART_T:
|
|
|
|
break;
|
2009-10-12 11:49:35 +00:00
|
|
|
case CLEND_T:
|
2014-11-15 11:53:32 +00:00
|
|
|
tr = (TestResult *) obj;
|
2009-10-12 11:49:35 +00:00
|
|
|
tr_xmlprint (file, tr, CK_VERBOSE);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
eprintf ("Bad event type received in xml_lfun", __FILE__, __LINE__);
|
2009-07-16 17:39:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-11-15 11:53:32 +00:00
|
|
|
void
|
|
|
|
tap_lfun (SRunner * sr CK_ATTRIBUTE_UNUSED, FILE * file,
|
|
|
|
enum print_output printmode CK_ATTRIBUTE_UNUSED, void *obj,
|
|
|
|
enum cl_event evt)
|
|
|
|
{
|
|
|
|
TestResult *tr;
|
|
|
|
|
|
|
|
static int num_tests_run = 0;
|
|
|
|
|
|
|
|
switch (evt) {
|
|
|
|
case CLINITLOG_SR:
|
|
|
|
/* As this is a new log file, reset the number of tests executed */
|
|
|
|
num_tests_run = 0;
|
|
|
|
break;
|
|
|
|
case CLENDLOG_SR:
|
|
|
|
/* Output the test plan as the last line */
|
|
|
|
fprintf (file, "1..%d\n", num_tests_run);
|
|
|
|
fflush (file);
|
|
|
|
break;
|
|
|
|
case CLSTART_SR:
|
|
|
|
break;
|
|
|
|
case CLSTART_S:
|
|
|
|
break;
|
|
|
|
case CLEND_SR:
|
|
|
|
break;
|
|
|
|
case CLEND_S:
|
|
|
|
break;
|
|
|
|
case CLSTART_T:
|
|
|
|
break;
|
|
|
|
case CLEND_T:
|
|
|
|
/* Print the test result to the tap file */
|
|
|
|
num_tests_run += 1;
|
|
|
|
tr = (TestResult *) obj;
|
|
|
|
fprintf (file, "%s %d - %s:%s:%s: %s\n",
|
|
|
|
tr->rtype == CK_PASS ? "ok" : "not ok", num_tests_run,
|
|
|
|
tr->file, tr->tcname, tr->tname, tr->msg);
|
|
|
|
fflush (file);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
eprintf ("Bad event type received in tap_lfun", __FILE__, __LINE__);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-17 20:09:48 +00:00
|
|
|
#if ENABLE_SUBUNIT
|
|
|
|
void
|
|
|
|
subunit_lfun (SRunner * sr, FILE * file, enum print_output printmode,
|
|
|
|
void *obj, enum cl_event evt)
|
|
|
|
{
|
|
|
|
TestResult *tr;
|
|
|
|
char const *name;
|
|
|
|
|
|
|
|
/* assert(printmode == CK_SUBUNIT); */
|
|
|
|
|
|
|
|
switch (evt) {
|
|
|
|
case CLINITLOG_SR:
|
|
|
|
break;
|
|
|
|
case CLENDLOG_SR:
|
|
|
|
break;
|
|
|
|
case CLSTART_SR:
|
|
|
|
break;
|
|
|
|
case CLSTART_S:
|
|
|
|
break;
|
|
|
|
case CLEND_SR:
|
|
|
|
if (printmode > CK_SILENT) {
|
|
|
|
fprintf (file, "\n");
|
|
|
|
srunner_fprint (file, sr, printmode);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CLEND_S:
|
|
|
|
break;
|
|
|
|
case CLSTART_T:
|
2014-11-15 11:53:32 +00:00
|
|
|
name = (const char *) obj;
|
2009-12-17 20:09:48 +00:00
|
|
|
subunit_test_start (name);
|
|
|
|
break;
|
|
|
|
case CLEND_T:
|
2014-11-15 11:53:32 +00:00
|
|
|
tr = (TestResult *) obj;
|
2009-12-17 20:09:48 +00:00
|
|
|
{
|
|
|
|
char *name = ck_strdup_printf ("%s:%s", tr->tcname, tr->tname);
|
|
|
|
char *msg = tr_short_str (tr);
|
2014-11-15 11:53:32 +00:00
|
|
|
|
2009-12-17 20:09:48 +00:00
|
|
|
switch (tr->rtype) {
|
|
|
|
case CK_PASS:
|
|
|
|
subunit_test_pass (name);
|
|
|
|
break;
|
|
|
|
case CK_FAILURE:
|
|
|
|
subunit_test_fail (name, msg);
|
|
|
|
break;
|
|
|
|
case CK_ERROR:
|
|
|
|
subunit_test_error (name, msg);
|
|
|
|
break;
|
2014-11-15 11:53:32 +00:00
|
|
|
case CK_TEST_RESULT_INVALID:
|
2009-12-17 20:09:48 +00:00
|
|
|
default:
|
|
|
|
eprintf ("Bad result type in subunit_lfun", __FILE__, __LINE__);
|
|
|
|
free (name);
|
|
|
|
free (msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
eprintf ("Bad event type received in subunit_lfun", __FILE__, __LINE__);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2009-07-16 17:39:16 +00:00
|
|
|
|
2014-11-15 11:53:32 +00:00
|
|
|
static FILE *
|
|
|
|
srunner_open_file (const char *filename)
|
|
|
|
{
|
|
|
|
FILE *f = NULL;
|
|
|
|
|
|
|
|
if (strcmp (filename, STDOUT_OVERRIDE_LOG_FILE_NAME) == 0) {
|
|
|
|
f = stdout;
|
|
|
|
} else {
|
|
|
|
f = fopen (filename, "w");
|
|
|
|
if (f == NULL) {
|
|
|
|
eprintf ("Error in call to fopen while opening file %s:", __FILE__,
|
|
|
|
__LINE__ - 2, filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
FILE *
|
|
|
|
srunner_open_lfile (SRunner * sr)
|
2009-07-16 17:39:16 +00:00
|
|
|
{
|
|
|
|
FILE *f = NULL;
|
2014-11-15 11:53:32 +00:00
|
|
|
|
2009-07-16 17:39:16 +00:00
|
|
|
if (srunner_has_log (sr)) {
|
2014-11-15 11:53:32 +00:00
|
|
|
f = srunner_open_file (srunner_log_fname (sr));
|
2009-07-16 17:39:16 +00:00
|
|
|
}
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
FILE *
|
|
|
|
srunner_open_xmlfile (SRunner * sr)
|
2009-07-16 17:39:16 +00:00
|
|
|
{
|
|
|
|
FILE *f = NULL;
|
2014-11-15 11:53:32 +00:00
|
|
|
|
2009-07-16 17:39:16 +00:00
|
|
|
if (srunner_has_xml (sr)) {
|
2014-11-15 11:53:32 +00:00
|
|
|
f = srunner_open_file (srunner_xml_fname (sr));
|
|
|
|
}
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
|
|
|
FILE *
|
|
|
|
srunner_open_tapfile (SRunner * sr)
|
|
|
|
{
|
|
|
|
FILE *f = NULL;
|
|
|
|
|
|
|
|
if (srunner_has_tap (sr)) {
|
|
|
|
f = srunner_open_file (srunner_tap_fname (sr));
|
2009-07-16 17:39:16 +00:00
|
|
|
}
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
void
|
|
|
|
srunner_init_logging (SRunner * sr, enum print_output print_mode)
|
2009-07-16 17:39:16 +00:00
|
|
|
{
|
|
|
|
FILE *f;
|
2014-11-15 11:53:32 +00:00
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
sr->loglst = check_list_create ();
|
2009-12-17 20:09:48 +00:00
|
|
|
#if ENABLE_SUBUNIT
|
|
|
|
if (print_mode != CK_SUBUNIT)
|
|
|
|
#endif
|
|
|
|
srunner_register_lfun (sr, stdout, 0, stdout_lfun, print_mode);
|
|
|
|
#if ENABLE_SUBUNIT
|
|
|
|
else
|
|
|
|
srunner_register_lfun (sr, stdout, 0, subunit_lfun, print_mode);
|
|
|
|
#endif
|
2009-07-16 17:39:16 +00:00
|
|
|
f = srunner_open_lfile (sr);
|
|
|
|
if (f) {
|
2014-11-15 11:53:32 +00:00
|
|
|
srunner_register_lfun (sr, f, f != stdout, lfile_lfun, print_mode);
|
2009-07-16 17:39:16 +00:00
|
|
|
}
|
|
|
|
f = srunner_open_xmlfile (sr);
|
|
|
|
if (f) {
|
2014-11-15 11:53:32 +00:00
|
|
|
srunner_register_lfun (sr, f, f != stdout, xml_lfun, print_mode);
|
|
|
|
}
|
|
|
|
f = srunner_open_tapfile (sr);
|
|
|
|
if (f) {
|
|
|
|
srunner_register_lfun (sr, f, f != stdout, tap_lfun, print_mode);
|
2009-07-16 17:39:16 +00:00
|
|
|
}
|
|
|
|
srunner_send_evt (sr, NULL, CLINITLOG_SR);
|
|
|
|
}
|
|
|
|
|
2009-10-12 11:49:35 +00:00
|
|
|
void
|
|
|
|
srunner_end_logging (SRunner * sr)
|
2009-07-16 17:39:16 +00:00
|
|
|
{
|
|
|
|
List *l;
|
|
|
|
int rval;
|
|
|
|
|
|
|
|
srunner_send_evt (sr, NULL, CLENDLOG_SR);
|
|
|
|
|
|
|
|
l = sr->loglst;
|
2014-11-15 11:53:32 +00:00
|
|
|
for (check_list_front (l); !check_list_at_end (l); check_list_advance (l)) {
|
|
|
|
Log *lg = (Log *) check_list_val (l);
|
|
|
|
|
2009-07-16 17:39:16 +00:00
|
|
|
if (lg->close) {
|
|
|
|
rval = fclose (lg->lfile);
|
|
|
|
if (rval != 0)
|
2014-11-15 11:53:32 +00:00
|
|
|
eprintf ("Error in call to fclose while closing log file:",
|
|
|
|
__FILE__, __LINE__ - 2);
|
2009-07-16 17:39:16 +00:00
|
|
|
}
|
|
|
|
free (lg);
|
|
|
|
}
|
2014-11-15 11:53:32 +00:00
|
|
|
check_list_free (l);
|
2009-07-16 17:39:16 +00:00
|
|
|
sr->loglst = NULL;
|
|
|
|
}
|