testqbsp: use "-tjunc rotate" on tests which are testing for a strict number of faces output

This commit is contained in:
Eric Wasylishen 2022-07-22 22:40:24 -06:00
parent 0561766bc9
commit 876646eeeb
1 changed files with 3 additions and 3 deletions

View File

@ -604,7 +604,7 @@ TEST_CASE("simple_sealed2", "[testmaps_q1]")
TEST_CASE("simple_worldspawn_worldspawn", "[testmaps_q1]") TEST_CASE("simple_worldspawn_worldspawn", "[testmaps_q1]")
{ {
const auto [bsp, bspx, prt] = LoadTestmapQ1("qbsp_simple_worldspawn_worldspawn.map"); const auto [bsp, bspx, prt] = LoadTestmapQ1("qbsp_simple_worldspawn_worldspawn.map", {"-tjunc", "rotate"});
// 1 solid leaf // 1 solid leaf
// 5 empty leafs around the button // 5 empty leafs around the button
@ -643,7 +643,7 @@ TEST_CASE("simple_worldspawn_detail_wall", "[testmaps_q1]")
TEST_CASE("simple_worldspawn_detail", "[testmaps_q1]") TEST_CASE("simple_worldspawn_detail", "[testmaps_q1]")
{ {
const auto [bsp, bspx, prt] = LoadTestmapQ1("qbsp_simple_worldspawn_detail.map"); const auto [bsp, bspx, prt] = LoadTestmapQ1("qbsp_simple_worldspawn_detail.map", {"-tjunc", "rotate"});
REQUIRE(prt.has_value()); REQUIRE(prt.has_value());
@ -944,7 +944,7 @@ TEST_CASE("tjunc_angled_face", "[testmaps_q1]")
*/ */
TEST_CASE("brush_clipping_order", "[testmaps_q1]") TEST_CASE("brush_clipping_order", "[testmaps_q1]")
{ {
const auto [bsp, bspx, prt] = LoadTestmapQ1("qbsp_brush_clipping_order.map"); const auto [bsp, bspx, prt] = LoadTestmapQ1("qbsp_brush_clipping_order.map", {"-tjunc", "rotate"});
REQUIRE(prt.has_value()); REQUIRE(prt.has_value());