-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Emulation code coverage : persist and merge coverage bitmaps (#992)
* This commit extends sw-emulator coverage functionality so the coverage bitmap of indiividual test runs can be dumped to the file system and subsequently merged so the coverage can be calculated. * misc fixes * Remove expensive .clone() call. --------- Co-authored-by: Kor Nielsen <[email protected]>
- Loading branch information
Showing
20 changed files
with
547 additions
and
282 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Licensed under the Apache-2.0 license | ||
|
||
[package] | ||
name = "caliptra-coverage" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
anyhow.workspace = true | ||
serde = {workspace = true, features = ["derive"]} | ||
serde_json.workspace = true | ||
hex.workspace = true | ||
rand.workspace = true | ||
bit-vec = { workspace = true, features = ["serde"] } | ||
caliptra-builder.workspace = true | ||
elf.workspace = true |
Oops, something went wrong.