+check (0.8.1-1) unstable; urgency=low
+
+ * See upstream changelog
+
+ -- Arien Malec <arien_malec@yahoo.com> Wed, 27 Feb 2002 18:25:00 +0000
+
check (0.8.0-1) unstable; urgency=low
* See upstream changelog
-check_0.8.0-1_i386.deb devel optional
+check_0.8.1-1_i386.deb devel optional
Summary: A unit test framework for C
Name: check
-Version: 0.8.0
+Version: 0.8.1
Release: 1
Epoch: 1
-Source: http://prdownloads.sourceforge.net/check/check-0.8.0.tar.gz
+Source: http://prdownloads.sourceforge.net/check/check-0.8.1.tar.gz
Group: Development/Tools
Copyright: GPL
URL: http://check.sourceforge.net
check_log.h check_log.c\
check_str.h check_str.c\
check_print.h check_print.c\
- error.h error.c\
+ check_error.h check_error.c\
list.h list.c
include_HEADERS = check.h
-libcheck_a_SOURCES = check.h check_impl.h check_magic.h check.c check_run.c check_pack.h check_pack.c check_msg.h check_msg.c check_log.h check_log.c check_str.h check_str.c check_print.h check_print.c error.h error.c list.h list.c
+libcheck_a_SOURCES = check.h check_impl.h check_magic.h check.c check_run.c check_pack.h check_pack.c check_msg.h check_msg.c check_log.h check_log.c check_str.h check_str.c check_print.h check_print.c check_error.h check_error.c list.h list.c
CLEANFILES = *.*~
LIBS = @LIBS@
libcheck_a_LIBADD =
libcheck_a_OBJECTS = check.o check_run.o check_pack.o check_msg.o \
-check_log.o check_str.o check_print.o error.o list.o
+check_log.o check_str.o check_print.o check_error.o list.o
AR = ar
CFLAGS = @CFLAGS@
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
TAR = tar
GZIP_ENV = --best
-DEP_FILES = .deps/check.P .deps/check_log.P .deps/check_msg.P \
-.deps/check_pack.P .deps/check_print.P .deps/check_run.P \
-.deps/check_str.P .deps/error.P .deps/list.P
+DEP_FILES = .deps/check.P .deps/check_error.P .deps/check_log.P \
+.deps/check_msg.P .deps/check_pack.P .deps/check_print.P \
+.deps/check_run.P .deps/check_str.P .deps/list.P
SOURCES = $(libcheck_a_SOURCES)
OBJECTS = $(libcheck_a_OBJECTS)
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
-#include "error.h"
+#include "check_error.h"
#include "list.h"
#include "check.h"
#include "check_impl.h"
#include <string.h>
#include <stdio.h>
#include <errno.h>
-#include "error.h"
+#include "check_error.h"
void eprintf (char *fmt, char *file, int line, ...)
#include <stdio.h>
#include <check.h>
#include "list.h"
-#include "error.h"
+#include "check_error.h"
#include "check_impl.h"
#include "check_log.h"
#include "check_print.h"
#include "stdlib.h"
#include "stdio.h"
#include "list.h"
-#include "error.h"
+#include "check_error.h"
#include "check.h"
#include "check_impl.h"
#include "check_msg.h"
#include <unistd.h>
#include "list.h"
-#include "error.h"
+#include "check_error.h"
#include "check.h"
#include "check_magic.h"
#include "check_impl.h"
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
-#include "error.h"
+#include "check_error.h"
#include "list.h"
#include "check.h"
#include "check_impl.h"
static TestResult *tcase_run_tfun_nofork (TCase *tc, TF *tfun)
{
+ tcase_run_checked_setup(tc);
tfun->fn();
+ tcase_run_checked_teardown(tc);
return receive_result_info_nofork (tc->name);
}
#include <stdio.h>
#include <check.h>
#include "list.h"
-#include "error.h"
+#include "check_error.h"
#include "check_impl.h"
#include "check_str.h"
#include <stdlib.h>
#include "list.h"
-#include "error.h"
+#include "check_error.h"
enum {
LINIT = 1,
#include <signal.h>
#include <stdio.h>
#include <check.h>
-#include "error.h"
+#include "check_error.h"
#include "check_str.h"
#include "check_check.h"
#include "check_magic.h"
#include <check.h>
#include "check_magic.h"
#include "check_pack.h"
-#include "error.h"
+#include "check_error.h"
#include "check_check.h"
START_TEST(test_pack_fmsg)