Disable load_geoip_file() tests on windows

See bug #25787 for discussion; we should have a better fix here.
This commit is contained in:
Nick Mathewson 2018-04-12 12:45:12 -04:00
parent d3b9b5a3dd
commit ad57b1279a
1 changed files with 7 additions and 1 deletions

View File

@ -449,10 +449,16 @@ test_geoip_load_file(void *arg)
#define FORK(name) \
{ #name, test_ ## name , TT_FORK, NULL, NULL }
#ifdef _WIN32
#define SKIP_ON_WINDOWS TT_SKIP
#else
#define SKIP_ON_WINDOWS 0
#endif
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, NULL, NULL },
{ "load_file", test_geoip_load_file, TT_FORK|SKIP_ON_WINDOWS, NULL, NULL },
END_OF_TESTCASES
};