Also dump posix return (aka WEXITSTATUS)

This commit is contained in:
Dane Springmeyer 2015-10-20 15:18:12 -07:00
parent cd5b97b01f
commit d1c5c69f07

View file

@ -210,7 +210,9 @@ TEST_CASE("geojson") {
if (create_index) if (create_index)
{ {
int ret = detail::create_disk_index(filename, true); int ret = detail::create_disk_index(filename, true);
int ret_posix = (ret >> 8) & 0x000000ff;
INFO(ret); INFO(ret);
INFO(ret_posix);
CHECK(mapnik::util::exists(filename + ".index")); CHECK(mapnik::util::exists(filename + ".index"));
} }