Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 3 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ keep from reaching it.
Neither prerequisite of `cargo test` is set up in the session container. Install Z3 at the
version `.github/actions/setup-z3` pins for CI, and start a Docker daemon with `dockerd &`.
The daemon dies from time to time, so restart it whenever the tests that need it fail.

Export the `COAR_IMAGE` digest that `.github/workflows/ci.yml` pins, and `docker pull` it
before running `cargo test`.
1 change: 1 addition & 0 deletions src/chc/solver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ impl CommandConfig {
.args(&self.args)
.arg(path_arg)
.stdout(stdout)
.stderr(std::process::Stdio::piped())
.spawn()?;
tracing::info!(program = self.name, args = ?self.args, path = %path_arg.to_string_lossy(), pid = child.id(), "spawned");

Expand Down