Skip to content

Commit

Permalink
print output for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
cowlicks committed Sep 25, 2024
1 parent 7ecd90e commit 82e302f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/ffi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ fn make_test_basic_ffi_hb_get() -> Result<()> {
loop {
// TODO FIXME sometimes there is junk in the beggining of the stdout on the first run
let output = run_script_relative_to_git_root("tests/common/c/target/hyperbee")?;
dbg!(output);
let stdout = String::from_utf8_lossy(&output.stdout).trim().to_string();
println!("{}", &stdout);
if stdout == "25" {
break;
}
Expand Down

0 comments on commit 82e302f

Please sign in to comment.