Commit 50a6f79
run_guest_benches: clean apc_candidate_* with find, not a glob
Large guests emit thousands of per-block `apc_candidate_*` snapshots into
the shared candidates_dir (e.g. the ~7k-block guest). `rm -f dir/apc_candidate_*`
expands the glob into one argv and overflows ARG_MAX on the bench runner
("Argument list too long", exit 126), failing the whole guest-bench job
after proving has already succeeded.
Use `find -maxdepth 1 -name 'apc_candidate_*' -delete`, which deletes
in-process without building a giant argument list. `apc_candidates.json`
doesn't match the pattern, so it's still preserved.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>1 parent 09aeb8b commit 50a6f79
1 file changed
Lines changed: 6 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
56 | 56 | | |
57 | 57 | | |
58 | 58 | | |
59 | | - | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
60 | 65 | | |
61 | 66 | | |
62 | 67 | | |
| |||
0 commit comments