Skip to content

Commit 75b0318

Browse files
committed
nit: add note about weird status problem
1 parent 295285c commit 75b0318

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

crates/vim9-gen/src/test_harness.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ pub fn exec_lua(preamble: &str) -> Result<HashMap<String, Value>> {
9797
drop(child_stdin);
9898

9999
// Wait til output has completed.
100-
let output = child.wait_with_output()?;
101-
dbg!(&output);
100+
let _ = child.wait_with_output()?;
102101

102+
// TODO: For some reason we get a weird 256 wait status on my machine...
103103
// assert!(
104104
// output.status.success(),
105105
// "Failed With:\nstdout:{}\nstderr:{}",

0 commit comments

Comments
 (0)