tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 3f967bfbd13014764b9938c92981b7c3316b5c08
parent 8be1ac8abe56e605009acc59429bd53e1ab6853f
Author: Isis Lovecruft <isis@torproject.org>
Date:   Mon, 16 Apr 2018 19:06:56 +0000

tests: Skip two more geoip_load_file tests on Windows.

 * FIXES part of #25515: https://bugs.torproject.org/25515

Diffstat:
Msrc/test/test_geoip.c | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git 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 };