Skip to content

Commit

Permalink
fix: Array patching algorithm (#352)
Browse files Browse the repository at this point in the history
* fix: Array patching algorithm

* fix: VecPatch algorithm
  • Loading branch information
taorepoara authored Jan 30, 2025
1 parent 237b8d8 commit b6ef0d3
Show file tree
Hide file tree
Showing 2 changed files with 432 additions and 46 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,9 @@ RUSTFLAGS="-C instrument-coverage" \
LLVM_PROFILE_FILE="target/coverage/profiles/cargo-test-%p-%m.profraw" \
cargo test
# Convert to lcov format
grcov target/coverage/profiles/ --binary-path ./target/debug/deps/ -s . -t lcov --branch --ignore-not-existing --ignore ../* --ignore /* -o target/coverage/lcov.info
grcov target/coverage/profiles/ --binary-path ./target/debug/deps/ -s . -t lcov --branch --ignore-not-existing -o target/coverage/lcov.info
# Generate the HTML report
grcov target/coverage/profiles/ --binary-path ./target/debug/deps/ -s . -t html --branch --ignore-not-existing --ignore ../* --ignore /* -o target/coverage/html
grcov target/coverage/profiles/ --binary-path ./target/debug/deps/ -s . -t html --branch --ignore-not-existing -o target/coverage/html
```

### Generate the JSON Schema
Expand Down
Loading

0 comments on commit b6ef0d3

Please sign in to comment.