aboutsummaryrefslogtreecommitdiff
path: root/lib/tinytest/README
diff options
context:
space:
mode:
authorPaul Sokolovsky2017-12-08 19:26:15 +0200
committerPaul Sokolovsky2017-12-08 19:26:15 +0200
commite9d29c9ba997ae0f00f16f3a21dffce7c763a3d4 (patch)
tree101656c5e1f57a784077edf0d1708aeeb9321002 /lib/tinytest/README
parent24c641c4e3637a8c73b7546c5500a49f7dd94b2a (diff)
lib/tinytest: Move from tools/tinytest.
Tinytest library was misplaced under tools/. By convention, any target libraries belong to lib/, while tools/ contains host-side tools.
Diffstat (limited to 'lib/tinytest/README')
-rw-r--r--lib/tinytest/README18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/tinytest/README b/lib/tinytest/README
new file mode 100644
index 000000000..902c4a2e0
--- /dev/null
+++ b/lib/tinytest/README
@@ -0,0 +1,18 @@
+Tinytest is a tiny little test framework written in C by Nick Mathewson.
+
+It is distributed under the 3-clause BSD license. You can use it in
+your own programs so long as you follow the license's conditions.
+
+It's been tested on Windows, Mac, and many of the free Unixes.
+
+It knows how to fork before running certain tests, and it makes
+text-mode output in a format I like.
+
+For info on how to use it, check out tinytest_demo.c.
+
+You can get the latest version using Git, by pulling from
+ git://github.com/nmathewson/tinytest.git
+
+Patches are welcome. Patches that turn this from tinytest to hugetest
+will not be applied. If you want a huge test framework, use CUnit.
+