aboutsummaryrefslogtreecommitdiff
path: root/src/test/test_geoip.c
diff options
context:
space:
mode:
authorIsis Lovecruft <isis@torproject.org>2018-04-16 19:06:56 +0000
committerDavid Goulet <dgoulet@torproject.org>2018-04-26 11:33:22 -0400
commit3f967bfbd13014764b9938c92981b7c3316b5c08 (patch)
treea12c75d979f6b14038dff520e3e950e821e021ed /src/test/test_geoip.c
parent8be1ac8abe56e605009acc59429bd53e1ab6853f (diff)
downloadtor-3f967bfbd13014764b9938c92981b7c3316b5c08.tar.gz
tor-3f967bfbd13014764b9938c92981b7c3316b5c08.zip
tests: Skip two more geoip_load_file tests on Windows.
* FIXES part of #25515: https://bugs.torproject.org/25515
Diffstat (limited to 'src/test/test_geoip.c')
-rw-r--r--src/test/test_geoip.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/test/test_geoip.c b/src/test/test_geoip.c
index b35997edc6..af36166538 100644
--- a/src/test/test_geoip.c
+++ b/src/test/test_geoip.c
@@ -548,8 +548,10 @@ struct testcase_t geoip_tests[] = {
{ "geoip", test_geoip, TT_FORK, NULL, NULL },
{ "geoip_with_pt", test_geoip_with_pt, TT_FORK, NULL, NULL },
{ "load_file", test_geoip_load_file, TT_FORK|SKIP_ON_WINDOWS, NULL, NULL },
- { "load_file6", test_geoip6_load_file, TT_FORK, NULL, NULL },
- { "load_2nd_file", test_geoip_load_2nd_file, TT_FORK, NULL, NULL },
+ { "load_file6", test_geoip6_load_file, TT_FORK | SKIP_ON_WINDOWS,
+ NULL, NULL },
+ { "load_2nd_file", test_geoip_load_2nd_file, TT_FORK | SKIP_ON_WINDOWS,
+ NULL, NULL },
END_OF_TESTCASES
};