aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2012-02-13 17:48:43 -0500
committerNick Mathewson <nickm@torproject.org>2012-02-13 17:48:43 -0500
commit8cae9c53b780fd24fcd0211f5fa86f1b66779a6f (patch)
tree8b72d719102c80af6f2ffbfa9896548b8b306730 /src/test
parent9efee31fae1584c108a31fa407e32cc271d9bf10 (diff)
downloadtor-8cae9c53b780fd24fcd0211f5fa86f1b66779a6f.tar
tor-8cae9c53b780fd24fcd0211f5fa86f1b66779a6f.tar.gz
Oops; there were a couple of typos in the upstream tinytest
Diffstat (limited to 'src/test')
-rw-r--r--src/test/tinytest_macros.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/tinytest_macros.h b/src/test/tinytest_macros.h
index 92678c466..9ff69b1d5 100644
--- a/src/test/tinytest_macros.h
+++ b/src/test/tinytest_macros.h
@@ -68,7 +68,7 @@
TT_STMT_END
/* Fail and abort the current test for the reason in msg */
-#define tt_abortprint_f(msg) TT_DIE(msg)
+#define tt_abort_printf(msg) TT_DIE(msg)
#define tt_abort_perror(op) TT_DIE(("%s: %s [%d]",(op),strerror(errno), errno))
#define tt_abort_msg(msg) TT_DIE(("%s", msg))
#define tt_abort() TT_DIE(("%s", "(Failed.)"))
@@ -82,7 +82,7 @@
/* End the current test, and indicate we are skipping it. */
#define tt_skip() \
TT_STMT_BEGIN \
- _tinytest_set_test_skipped(); \
+ tinytest_set_test_skipped_(); \
TT_EXIT_TEST_FUNCTION; \
TT_STMT_END