testqbsp: add a obj2map terrain test case

some terrain I created in Blender
This commit is contained in:
Eric Wasylishen 2022-09-26 22:40:09 -06:00
parent 4807744d06
commit 8bfd11ba13
2 changed files with 2792 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1562,6 +1562,15 @@ TEST_CASE("chop", "[testmaps_q1][.releaseonly]")
CheckFilled(bsp);
}
TEST_CASE("mountain", "[testmaps_q1][.releaseonly][!mayfail]")
{
const auto [bsp, bspx, prt] = LoadTestmapQ1("qbsp_q1_mountain.map");
CHECK(GAME_QUAKE == bsp.loadversion->game->id);
CHECK(prt);
CheckFilled(bsp);
}
TEST_CASE("base1leak", "[testmaps_q2]")
{
const auto [bsp, bspx, prt] = LoadTestmapQ2("base1leak.map");