Skip to content

Commit

Permalink
remove test output
Browse files Browse the repository at this point in the history
  • Loading branch information
prozacchiwawa committed Jul 22, 2024
1 parent 5dd4de0 commit 9642672
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/tests/compiler/cldb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ where
}

if let Some(result) = cldbrun.step(&mut allocator) {
eprintln!("{:?}", result);
output = result;
if !viewer.show(&cldbrun.current_step(), Some(output.clone())) {
return None;
Expand Down Expand Up @@ -335,7 +334,6 @@ impl ExpectFailure {

impl StepOfCldbViewer for ExpectFailure {
fn show(&mut self, _step: &RunStep, output: Option<BTreeMap<String, String>>) -> bool {
eprintln!("{:?}", output);
if let Some(o) = output {
if let Some(_) = o.get("Failure") {
let did_throw = o.get("Operator") == Some(&"8".to_string());
Expand Down

0 comments on commit 9642672

Please sign in to comment.