Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasbishop committed Jul 21, 2023
1 parent 219e5a0 commit 6f28b4d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion uefi-test-runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ uefi = { path = "../uefi", features = ["alloc"] }
uefi-services = { path = "../uefi-services" }

log = { version = "0.4.17", default-features = false }
minicov = { path = "/var/home/nbishop/src/minicov/minicov" } # TODO
minicov = { path = "../../minicov/minicov" } # TODO
qemu-exit = "3.0.0"
base64 = { version = "0.21.2", default-features = false, features = ["alloc"] }

Expand Down
4 changes: 2 additions & 2 deletions xtask/src/qemu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -644,8 +644,8 @@ pub fn run_qemu(arch: UefiArch, opt: &QemuOpt) -> Result<()> {
}

// TODO: hack
fs_err::remove_file("code_cov.profraw")?;
fs_err::remove_dir_all("cov_report")?;
let _ = fs_err::remove_file("code_cov.profraw");
let _ = fs_err::remove_dir_all("cov_report");

check_mbr_test_disk(&test_disk)?;

Expand Down

0 comments on commit 6f28b4d

Please sign in to comment.