Skip to content

Commit c81c70f

Browse files
committed
make the new script executable
1 parent 9050f12 commit c81c70f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ci/ci-fuzz.sh

100644100755
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,6 @@ else
1818
echo "✗ Coverage report not found at expected location"
1919
echo "Checking what was created in fuzz/$COVERAGE_DIR:"
2020
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"
2123
fi
22-

contrib/generate_fuzz_coverage.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export RUSTFLAGS="--cfg=fuzzing --cfg=secp256k1_fuzz --cfg=hashes_fuzz"
5656
cargo llvm-cov --html --ignore-filename-regex "fuzz/" --output-dir "$OUTPUT_DIR"
5757

5858
# 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
6060
if [ ! -f "$OUTPUT_DIR/html/index.html" ]; then
6161
echo "Error: Failed to generate coverage report at $OUTPUT_DIR/html/index.html"
6262
# Debug: list what was actually created

0 commit comments

Comments
 (0)