Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove useless debug log in ui runtest
  • Loading branch information
ilyaaay committed Jun 3, 2025
commit eac0189e41e87f2c4107f6b8fc956927d2e5dc9a
3 changes: 1 addition & 2 deletions src/tools/compiletest/src/runtest/ui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::fs::OpenOptions;
use std::io::Write;

use rustfix::{Filter, apply_suggestions, get_suggestions_from_json};
use tracing::debug;
use tracing::{debug, error};

use super::{
AllowUnused, Emit, FailMode, LinkToAux, PassMode, TargetLocation, TestCx, TestOutput,
Expand Down Expand Up @@ -135,7 +135,6 @@ impl TestCx<'_> {
0
};
if run_output_errors > 0 {
debug!("proc_res: {}", proc_res.stdout);
self.fatal_proc_rec(
&format!("{} errors occurred comparing run output.", run_output_errors),
&proc_res,
Expand Down
Loading