## Summary - restore the guardian review request snapshot test and its tracked snapshot after it was dropped from `main` - make Bazel Rust unit-test wrappers resolve runfiles correctly on manifest-only platforms like macOS and point Insta at the real workspace root - harden the shell-escalation socket-closure assertion so the musl Bazel test no longer depends on fd reuse behavior ## Verification - cargo test -p codex-core guardian_review_request_layout_matches_model_visible_request_snapshot - cargo test -p codex-shell-escalation - bazel test //codex-rs/exec:exec-unit-tests //codex-rs/shell-escalation:shell-escalation-unit-tests Supersedes #13894. --------- Co-authored-by: Ahmed Ibrahim <aibrahim@openai.com> Co-authored-by: viyatb-oai <viyatb@openai.com> Co-authored-by: Codex <noreply@openai.com>
17 lines
438 B
Text
17 lines
438 B
Text
load("//:defs.bzl", "codex_rust_crate")
|
|
|
|
exports_files(
|
|
["repo_root.marker"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
codex_rust_crate(
|
|
name = "cargo-bin",
|
|
crate_name = "codex_utils_cargo_bin",
|
|
compile_data = ["repo_root.marker"],
|
|
lib_data_extra = ["repo_root.marker"],
|
|
test_data_extra = ["repo_root.marker"],
|
|
rustc_env = {
|
|
"CODEX_REPO_ROOT_MARKER": "$(rlocationpath :repo_root.marker)",
|
|
},
|
|
)
|