diff options
Diffstat (limited to 'test/test_2022.cpp')
-rw-r--r-- | test/test_2022.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/test/test_2022.cpp b/test/test_2022.cpp index ea14837..3d1c627 100644 --- a/test/test_2022.cpp +++ b/test/test_2022.cpp @@ -134,12 +134,12 @@ TEST_CASE("Beacon Exclusion Zone", "[2022]") { REQUIRE(12567351400528 == p.second); } -//TEST_CASE("Proboscidea Volcanium", "[2022]") { -// line_view lv = load_file("../src/2022/day16/input0"); -// auto p = aoc2022::day16(lv); -// REQUIRE(0 == p.first); -// REQUIRE(0 == p.second); -//} +TEST_CASE("Proboscidea Volcanium", "[2022]") { + line_view lv = load_file("../src/2022/day16/input0"); + auto p = aoc2022::day16(lv); + REQUIRE(0 == p.first); + REQUIRE(0 == p.second); +} TEST_CASE("Pyroclastic Flow", "[2022]") { line_view lv = load_file("../src/2022/day17/input"); @@ -190,12 +190,12 @@ TEST_CASE("Unstable Diffusion", "[2022]") { // REQUIRE(988 == p.second); } -TEST_CASE("Blizzard Basin", "[2022]") { - line_view lv = load_file("../src/2022/day24/input"); - auto p = aoc2022::day24(lv); - REQUIRE(332 == p.first); - REQUIRE(942 == p.second); -} +// TEST_CASE("Blizzard Basin", "[2022]") { +// line_view lv = load_file("../src/2022/day24/input"); +// auto p = aoc2022::day24(lv); +// REQUIRE(332 == p.first); +// REQUIRE(942 == p.second); +// } TEST_CASE("Full of Hot Air", "[2022]") { line_view lv = load_file("../src/2022/day25/input0"); |