File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 18
18
echo " ✗ Coverage report not found at expected location"
19
19
echo " Checking what was created in fuzz/$COVERAGE_DIR :"
20
20
ls -la " fuzz/$COVERAGE_DIR " || echo " Directory does not exist"
21
+ echo " Also checking if it was created in the current directory:"
22
+ ls -la " $COVERAGE_DIR " || echo " Directory $COVERAGE_DIR does not exist in current dir"
21
23
fi
22
-
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ export RUSTFLAGS="--cfg=fuzzing --cfg=secp256k1_fuzz --cfg=hashes_fuzz"
56
56
cargo llvm-cov --html --ignore-filename-regex " fuzz/" --output-dir " $OUTPUT_DIR "
57
57
58
58
# Check if coverage report was generated successfully
59
- # The report is generated directly in $OUTPUT_DIR/html/index.html
59
+ # The report is generated in $OUTPUT_DIR/html/index.html when using --html --output-dir
60
60
if [ ! -f " $OUTPUT_DIR /html/index.html" ]; then
61
61
echo " Error: Failed to generate coverage report at $OUTPUT_DIR /html/index.html"
62
62
# Debug: list what was actually created
You can’t perform that action at this time.
0 commit comments