Skip to content

Commit 13b66f1

Browse files
nikomatsakisflodiebold
authored andcommitted
don't silently ignore recursive solver
1 parent 5768375 commit 13b66f1

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

tests/test/mod.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -230,11 +230,7 @@ fn solve_goal(program_text: &str, goals: Vec<(&str, SolverChoice, TestGoal)>) {
230230
match (&solver_choice, &expected) {
231231
(SolverChoice::Recursive { .. }, TestGoal::All(_))
232232
| (SolverChoice::Recursive { .. }, TestGoal::First(_)) => {
233-
println!(
234-
"skipping goal {} for recursive solver because it requires solve_multiple",
235-
goal_text
236-
);
237-
continue;
233+
panic!("cannot test the recursive solver with yields_first or yields_all");
238234
}
239235
_ => {}
240236
};

0 commit comments

Comments
 (0)