summaryrefslogtreecommitdiffstats
path: root/development/check/README
diff options
context:
space:
mode:
author Duane Penzien2010-09-23 00:52:54 +0200
committer Robby Workman2010-09-23 00:52:54 +0200
commitb563dc32aacb513a129a89297838ea8d90667622 (patch)
tree4e0d43873de5ae6585de65b49e059cfa704e463b /development/check/README
parent966d20d5bb36f212c7bdd444d9150a4022ec540e (diff)
downloadslackbuilds-b563dc32aacb513a129a89297838ea8d90667622.tar.gz
development/check: Added (unit test framework)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'development/check/README')
-rw-r--r--development/check/README7
1 files changed, 7 insertions, 0 deletions
diff --git a/development/check/README b/development/check/README
new file mode 100644
index 0000000000..ddac2aa29a
--- /dev/null
+++ b/development/check/README
@@ -0,0 +1,7 @@
+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 the project's home page for more information, including a tutorial.