Skip to content
forked from libcheck/check

Unit test framework for embedded/IOT applications and C programs and libraries. Originally based on libcheck framework

License

Notifications You must be signed in to change notification settings

tfio/c-unit-tests

 
 

Repository files navigation

C Unit Tests

Travis Build Status Appveyor Build Status

C Unit Tests is a unit testing 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 https://libcheck.github.io/check for more information, including a tutorial. The tutorial is also available as info check.

Installation

C Unit Tests has the following dependencies:

  • automake-1.9.6 (1.11.3 on OS X if you are using /usr/bin/ar)
  • autoconf-2.59
  • libtool-1.5.22
  • pkg-config-0.20
  • texinfo-4.7 (for documentation)
  • tetex-bin (or any texinfo-compatible TeX installation, for documentation)
  • POSIX sed

The versions specified may be higher than those actually needed.

autoconf

$ autoreconf --install
$ ./configure
$ make
$ make c-unit-tests
$ make install

in this directory to set everything up. autoreconf calls all of the necessary tools for you, like autoconf, automake, autoheader, etc. If you ever change something during development, run autoreconf again (without --install), and it will perform the minimum set of actions necessary.

cmake

$ mkdir build
$ cd build
$ cmake ../
$ make
$ CTEST_OUTPUT_ON_FAILURE=1 make test

Linking against C Unit Tests

C Unit Tests uses variadic macros in check.h, and the strict C90 options for gcc will complain about this. In gcc 4.0 and above you can turn this off explicitly with -Wno-variadic-macros. In a future API it would be nice to eliminate these macros.

About

Unit test framework for embedded/IOT applications and C programs and libraries. Originally based on libcheck framework

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 62.1%
  • M4 9.6%
  • C++ 8.6%
  • HTML 7.1%
  • Shell 3.4%
  • CMake 3.0%
  • Other 6.2%