cargo-line-test

Crates.iocargo-line-test
lib.rscargo-line-test
version
sourcesrc
created_at2024-10-17 20:01:19.675096+00
updated_at2025-01-19 00:31:49.262178+00
descriptionRun tests by the lines they exercise
homepage
repositoryhttps://github.com/trailofbits/cargo-line-test
max_upload_size
id1413568
Cargo.toml error:TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
Samuel Moelius (smoelius)

documentation

README

cargo-line-test

Run tests by the lines they exercise

cargo-line-test relies on cargo-llvm-cov and requires it to be installed independently:

cargo install cargo-line-test cargo-llvm-cov

Examples

# Build cargo-line-test database
cargo line-test --build

# Run the tests that exercise src/main.rs:99
cargo line-test --line src/main.rs:99

# Run the tests that exercise lines changed by diff
git diff | cargo line-test --diff

# Update the database following source code changes
cargo line-test --refresh
Commit count: 44

cargo fmt