From d4b54549b83bbbfeb9c1d7d843ea244eed389c61 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 21 Sep 2009 14:23:13 -0400 Subject: Refactor unit tests to use the tinytest framework. "Tinytest" is a minimalist C unit testing framework I wrote for Libevent. It supports some generally useful features, like being able to run separate unit tests in their own processes. I tried to do the refactoring to change test.c as little as possible. Thus, we mostly don't call the tinytest macros directly. Instead, the test.h header is now a wrapper on tinytest.h to make our existing test_foo() macros work. The next step(s) here will be: - To break test.c into separate files, each with its own test group. - To look into which things we can test - To refactor the more fiddly tests to use the tinytest macros directly and/or run forked. - To see about writing unit tests for things we couldn't previously test without forking. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index aa679e556..4e049a03a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -66,7 +66,7 @@ check-spaces: ./contrib/checkSpace.pl -C \ src/common/*.h \ src/common/[^asO]*.c src/common/address.c \ - src/or/[^et]*.[ch] src/or/t*.c src/or/eventdns_tor.h + src/or/[^et]*.[ch] src/or/t[^i]*.c src/or/eventdns_tor.h check-docs: ./contrib/checkOptionDocs.pl -- cgit v1.2.3