diff options
author | kaiwu <kaiwu2004@gmail.com> | 2023-03-15 09:52:47 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2023-03-15 09:52:47 +0800 |
commit | c2f5d41ff9b21d7a4aac0bfb7c34bbb57a38c82b (patch) | |
tree | d06679bbbfeb4e0f7777d943c8c31cea39ef367c /test | |
parent | d8c212c131b05c6304265cfcf1b843d811a3de94 (diff) | |
download | advent-of-code-c2f5d41ff9b21d7a4aac0bfb7c34bbb57a38c82b.tar.gz advent-of-code-c2f5d41ff9b21d7a4aac0bfb7c34bbb57a38c82b.zip |
2017 day22
Diffstat (limited to 'test')
-rw-r--r-- | test/test_2017.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_2017.cpp b/test/test_2017.cpp index ab7c8cb..4e25464 100644 --- a/test/test_2017.cpp +++ b/test/test_2017.cpp @@ -211,14 +211,14 @@ TEST_CASE("Fractal Art", "[2017]") { TEST_CASE("Sporifica Virus", "[2017]") { - line_view lv = load_file("../src/2017/day22/input0"); + line_view lv = load_file("../src/2017/day22/input"); auto p = aoc2017::day22(lv); - // REQUIRE(5246 == p.first); - REQUIRE(0 == p.second); + REQUIRE(5246 == p.first); + REQUIRE(2512059 == p.second); } -TEST_CASE("", "[2017]") { +TEST_CASE("Coprocessor Conflagration", "[2017]") { line_view lv = load_file("../src/2017/day23/input"); auto p = aoc2017::day23(lv); REQUIRE(0 == p.first); |