Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test_coverage: put exclude_path value between double quotes
We don't want the shell to interpret the contents of exclude_path, but we want it all used as a single string for `--ignore-filename-regex`, so let's put it between double quotes. An example of failure is when we have | , as in this case: $ CARGO_TARGET_DIR=./cov_build cargo llvm-cov test --summary-only \ --ignore-filename-regex crates/virtio-bindings|crates/virtio-queue/src/mock.rs \ --workspace --features=virtio-blk/backend-stdio bash: crates/virtio-queue/src/mock.rs: Permission denied ... error: failed to generate report: process didn't exit successfully: ... (exit status: 74) Signed-off-by: Stefano Garzarella <[email protected]>
- Loading branch information