From 82e302f2bc37e17f9c7d8a8ecbee8a3e2655a385 Mon Sep 17 00:00:00 2001 From: Blake Griffith Date: Wed, 25 Sep 2024 15:37:32 -0400 Subject: [PATCH] print output for debugging --- tests/ffi.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/ffi.rs b/tests/ffi.rs index 0babd37..3f4ba2e 100644 --- a/tests/ffi.rs +++ b/tests/ffi.rs @@ -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; }