tests: Skip two more geoip_load_file tests on Windows.

* FIXES part of #25515: https://bugs.torproject.org/25515
This commit is contained in:
Isis Lovecruft 2018-04-16 19:06:56 +00:00 committed by David Goulet
parent 8be1ac8abe
commit 3f967bfbd1
1 changed files with 4 additions and 2 deletions

View File

@ -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
};