mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
Netbsd doesn't have ipfw, only the regular pf transport stuff.
Attempted fix for 19960. Also, fixes a typo.
This commit is contained in:
+11
-2
@@ -1050,7 +1050,7 @@ test_options_validate__transproxy(void *ignored)
|
||||
tt_int_op(ret, OP_EQ, -1);
|
||||
|
||||
#ifndef KERNEL_MAY_SUPPORT_IPFW
|
||||
tt_str_op(msg, OP_EQ, "ipfw is a FreeBSD-specificand OS X/Darwin-specific "
|
||||
tt_str_op(msg, OP_EQ, "ipfw is a FreeBSD-specific and OS X/Darwin-specific "
|
||||
"feature.");
|
||||
#else
|
||||
tt_int_op(tdata->opt->TransProxyType_parsed, OP_EQ, TPT_IPFW);
|
||||
@@ -1080,7 +1080,7 @@ test_options_validate__transproxy(void *ignored)
|
||||
TT_DIE(("Expected NULL but got '%s'", msg));
|
||||
}
|
||||
#endif
|
||||
#if defined(__FreeBSD_kernel__) || defined( DARWIN ) || defined(__NetBSD__)
|
||||
#ifdef KERNEL_MAY_SUPPORT_IPFW
|
||||
tdata = get_options_test_data("TransProxyType ipfw\n"
|
||||
"TransPort 127.0.0.1:123\n");
|
||||
ret = options_validate(tdata->old_opt, tdata->opt, tdata->def_opt, 0, &msg);
|
||||
@@ -1098,6 +1098,15 @@ test_options_validate__transproxy(void *ignored)
|
||||
TT_DIE(("Expected NULL but got '%s'", msg));
|
||||
}
|
||||
#endif
|
||||
#if defined(__NetBSD__)
|
||||
tdata = get_options_test_data("TransProxyType default\n"
|
||||
"TransPort 127.0.0.1:123\n");
|
||||
ret = options_validate(tdata->old_opt, tdata->opt, tdata->def_opt, 0, &msg);
|
||||
tt_int_op(ret, OP_EQ, -1);
|
||||
if (msg) {
|
||||
TT_DIE(("Expected NULL but got '%s'", msg));
|
||||
}
|
||||
#endif
|
||||
|
||||
// Assert that a test has run for some TransProxyType
|
||||
tt_assert(tdata);
|
||||
|
||||
Reference in New Issue
Block a user