Skip to content

Commit

Permalink
Print stderror
Browse files Browse the repository at this point in the history
  • Loading branch information
littledivy committed Jul 27, 2024
1 parent 235afd8 commit 9313fd1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Binary file added tests/.integration_test.rs.swp
Binary file not shown.
2 changes: 2 additions & 0 deletions tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ fn test_macho(size: usize, sign: bool) {
drop(out);
// Run the output
let output = std::process::Command::new(&_path).output().unwrap();
let stderr = String::from_utf8_lossy(&output.stderr);
println!("{}", stderr);
assert_eq!(output.status.success(), sign);

if sign {
Expand Down

0 comments on commit 9313fd1

Please sign in to comment.