mirror of
https://github.com/logos-blockchain/lez-fuzzing.git
synced 2026-06-07 03:29:26 +00:00
fix: resolve path to LEZ
This commit is contained in:
parent
e0720cbceb
commit
1da53a9566
1
.github/workflows/mutants.yml
vendored
1
.github/workflows/mutants.yml
vendored
@ -61,6 +61,7 @@ jobs:
|
||||
run: |
|
||||
cargo mutants \
|
||||
--package fuzz_props \
|
||||
--in-place \
|
||||
--output mutants-harness.out
|
||||
|
||||
- name: Upload mutants report
|
||||
|
||||
10
Justfile
10
Justfile
@ -665,11 +665,15 @@ coverage-all ENGINE="all":
|
||||
# logic that the property tests do not fully exercise.
|
||||
#
|
||||
# Workspace metadata in Cargo.toml configures --release, exclude_globs, and
|
||||
# timeout_multiplier automatically; no extra flags are needed here.
|
||||
# timeout_multiplier automatically.
|
||||
#
|
||||
# Output: mutants.out/ (human-readable report, also printed to stdout)
|
||||
# --in-place is mandatory: fuzz_props depends on LEZ crates via relative path
|
||||
# (../logos-execution-zone/...) — without it cargo-mutants copies the workspace
|
||||
# to /tmp and the copy cannot resolve those relative paths.
|
||||
#
|
||||
# Output: mutants-harness.out/ (human-readable report also printed to stdout)
|
||||
mutants-harness:
|
||||
cargo mutants --package fuzz_props
|
||||
cargo mutants --package fuzz_props --in-place --output mutants-harness.out
|
||||
|
||||
# Plane B — mutation testing of the LEZ protocol code against the committed corpus.
|
||||
#
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user