yasm/check
Peter Johnson ca6a1c8167 Massive build system change: single Makefile instead of recursive.
Note: still is automake-generated, but uses .inc files in the various
subdirectories instead of .am files.
TODO: Move arch-specific components of bytecode_test and memexpr_test to
arch/x86.

svn path=/trunk/yasm/; revision=395
2001-12-26 07:14:06 +00:00
..
check.c Add some (optional through configure) additional warning flags. Add options 2001-10-03 01:44:47 +00:00
check.h Add some (optional through configure) additional warning flags. Add options 2001-10-03 01:44:47 +00:00
check_impl.h Add some (optional through configure) additional warning flags. Add options 2001-10-03 01:44:47 +00:00
check_log.c Add some (optional through configure) additional warning flags. Add options 2001-10-03 01:44:47 +00:00
check_log.h Add some (optional through configure) additional warning flags. Add options 2001-10-03 01:44:47 +00:00
check_msg.c Add some (optional through configure) additional warning flags. Add options 2001-10-03 01:44:47 +00:00
check_msg.h Add some (optional through configure) additional warning flags. Add options 2001-10-03 01:44:47 +00:00
check_print.c Add some (optional through configure) additional warning flags. Add options 2001-10-03 01:44:47 +00:00
check_print.h Initial revision 2001-09-18 17:31:02 +00:00
check_run.c Add some (optional through configure) additional warning flags. Add options 2001-10-03 01:44:47 +00:00
error.c Add some (optional through configure) additional warning flags. Add options 2001-10-03 01:44:47 +00:00
error.h Add some (optional through configure) additional warning flags. Add options 2001-10-03 01:44:47 +00:00
list.c Autoconfize Check test suite, and make it work even if fork(), wait(), and 2001-09-19 21:56:00 +00:00
list.h Autoconfize Check test suite, and make it work even if fork(), wait(), and 2001-09-19 21:56:00 +00:00
Makefile.inc Massive build system change: single Makefile instead of recursive. 2001-12-26 07:14:05 +00:00
NEWS Initial revision 2001-09-18 17:31:02 +00:00
README Initial revision 2001-09-18 17:31:02 +00:00

Check is a unit test framework for C. It features a simple interface
for defining unit tests, putting little in the way of the
developer. Tests are run in a separate address space, so Check can
catch both assertion failures and code errors that cause segmentation
faults or other signals. The output from unit tests can be used within
source code editors and IDEs.

See http://check.sourceforge.net for more information, including a
tutorial.