| 88 | } |
| 89 | |
| 90 | TEST_CASE(loop_test1) |
| 91 | { |
| 92 | auto ress = run_prog(10, true, 1); |
| 93 | std::vector<int64_t> gold_last = {19}; |
| 94 | EXPECT(ress.front() == gold_last); |
| 95 | std::vector<int64_t> gold_concat = {4, 8, 13, 19, 0, 0, 0, 0, 0, 0}; |
| 96 | EXPECT(ress.back() == gold_concat); |
| 97 | } |
| 98 | |
| 99 | TEST_CASE(loop_test2) |
| 100 | { |