test: more data on geoip load failure.

This commit is contained in:
Nick Mathewson 2018-03-23 11:48:15 -04:00
parent e263317e07
commit bb9012c818
1 changed files with 5 additions and 1 deletions

View File

@ -404,7 +404,11 @@ test_geoip_load_file(void *arg)
geoip_db_digest(AF_INET));
const char FNAME[] = SRCDIR "/src/config/geoip";
tt_int_op(0, OP_EQ, geoip_load_file(AF_INET, FNAME));
int rv = geoip_load_file(AF_INET, FNAME);
if (rv != 0) {
TT_GRIPE(("Unable to load geoip from %s", escaped(FNAME)));
}
tt_int_op(0, OP_EQ, rv);
/* Check that we loaded some countries; this will fail if there are ever
* fewer than 50 countries in the world. */