sbpf-coverage 0.2.5

Maps SBPF execution traces to source code for test coverage and trace disassembly of Solana programs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/src/lib.rs b/src/lib.rs
index 57f88ab..a0e06c6 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -275,6 +275,7 @@ fn build_vaddr_entry_map<'a>(
             continue;
         }
         // procdump: ignore files other than what user has provided.
+        eprintln!("vaddr: 0x{:x}, file: {}, location: {:?}, src_paths: {:?}, debug_path: {}", vaddr, file.to_string(), location.line, src_paths, debug_path.display());
         if !src_paths
             .iter()
             .any(|src_path| file.starts_with(&src_path.to_string_lossy().to_string()))