diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-02-19 13:14:26 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-02-19 13:14:26 -0500 |
commit | c9ff6a7f834e25a93c806d0079b789d26b11695a (patch) | |
tree | f8544698d8732ab94462f87670b0f57ed3151ee2 /src/test/test_util.c | |
parent | 97e1539f7f70898ac928f598bf711b7c317d29b7 (diff) | |
download | tor-c9ff6a7f834e25a93c806d0079b789d26b11695a.tar.gz tor-c9ff6a7f834e25a93c806d0079b789d26b11695a.zip |
Mark map_anon_nofork test as skipped in 0.4.0
This test fails in some environments; since the code isn't used in
0.4.0, let's disable it for now.
Band-aid solution for #29534; bug not in any released Tor.
Diffstat (limited to 'src/test/test_util.c')
-rw-r--r-- | src/test/test_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_util.c b/src/test/test_util.c index 913c5e289d..7a2708c541 100644 --- a/src/test/test_util.c +++ b/src/test/test_util.c @@ -6360,6 +6360,6 @@ struct testcase_t util_tests[] = { UTIL_TEST(get_unquoted_path, 0), UTIL_TEST(log_mallinfo, 0), UTIL_TEST(map_anon, 0), - UTIL_TEST(map_anon_nofork, 0), + UTIL_TEST(map_anon_nofork, TT_SKIP /* See bug #29535 */), END_OF_TESTCASES }; |