summaryrefslogtreecommitdiff
path: root/test/tinytest.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2012-07-20 15:36:15 -0400
committerNick Mathewson <nickm@torproject.org>2012-07-20 15:36:15 -0400
commit52a0039ba102a5c6bdfa52381e3963e9929a01d4 (patch)
tree932d6276e27f4b7d28f092116de0c37960e50f3b /test/tinytest.h
parentcdb47db9e244ddc8be3b34e76127b2a93fe7aeb7 (diff)
downloadlibevent-52a0039ba102a5c6bdfa52381e3963e9929a01d4.tar.gz
Fix tinytset_skip to work with new tinytest_set_flag_ signature
Diffstat (limited to 'test/tinytest.h')
-rw-r--r--test/tinytest.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tinytest.h b/test/tinytest.h
index 25e29203..dff440e3 100644
--- a/test/tinytest.h
+++ b/test/tinytest.h
@@ -84,7 +84,7 @@ int tinytest_set_flag_(struct testgroup_t *, const char *, int set, unsigned lon
/** Set all tests in 'groups' matching the name 'named' to be skipped. */
#define tinytest_skip(groups, named) \
- tinytest_set_flag_(groups, named, TT_SKIP)
+ tinytest_set_flag_(groups, named, 1, TT_SKIP)
/** Run a single testcase in a single group. */
int testcase_run_one(const struct testgroup_t *,const struct testcase_t *);