Skip to content

Commit

Permalink
build: fix cov/fuzz scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
JaDogg committed Mar 2, 2024
1 parent 31d05cf commit 044d019
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion compiler/cov
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ export COV=$(realpath "./bin/coverage")
export FUZZ=$(realpath "./bin/fuzz")
echo "coverage path is $COV"
echo "fuzz path is $FUZZ"
docker run -v "$COV:/coverage" -v "$FUZZ:/fuzz" --rm -it --entrypoint /app/scripts/code-coverage.sh yaksha
docker run -v "$COV:/coverage" -v "$FUZZ:/fuzz" --rm -t --entrypoint /app/scripts/code-coverage.sh yaksha
2 changes: 1 addition & 1 deletion compiler/fuzz
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ export COV=$(realpath "./bin/coverage")
export FUZZ=$(realpath "./bin/fuzz")
echo "coverage path is $COV"
echo "fuzz path is $FUZZ"
docker run -v "$COV:/coverage" -v "$FUZZ:/fuzz" --rm -it --entrypoint /app/scripts/llvm-fuzzer.sh yaksha
docker run -v "$COV:/coverage" -v "$FUZZ:/fuzz" --rm -t --entrypoint /app/scripts/llvm-fuzzer.sh yaksha

0 comments on commit 044d019

Please sign in to comment.