diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-06-09 17:30:09 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-06-09 17:30:09 -0400 |
commit | 676608f9a69d7dd9c70a581109fa4eecc53a5d9a (patch) | |
tree | 3e9b2814eb3e787ad0b5484a44577a6d12900272 /src/test/test.h | |
parent | b2e7c356dbbf746b263f56fbc7e808c71dd7264e (diff) | |
download | tor-676608f9a69d7dd9c70a581109fa4eecc53a5d9a.tar.gz tor-676608f9a69d7dd9c70a581109fa4eecc53a5d9a.zip |
Upgrade to the latest version of tinytest
Diffstat (limited to 'src/test/test.h')
-rw-r--r-- | src/test/test.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/test.h b/src/test/test.h index f7ae46ce6d..a053a7ac43 100644 --- a/src/test/test.h +++ b/src/test/test.h @@ -45,7 +45,8 @@ _print = tor_malloc(printlen); \ base16_encode(_print, printlen, _value, \ (len)); }, \ - { tor_free(_print); } \ + { tor_free(_print); }, \ + TT_EXIT_TEST_FUNCTION \ ); #define test_memeq(expr1, expr2, len) test_mem_op((expr1), ==, (expr2), len) |