mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-28 01:01:53 +03:00
Update kcov
This commit is contained in:
parent
0a324ec817
commit
5325a38643
@ -2,9 +2,16 @@ cd /home/circleci/project/ &&
|
||||
echo "---START_LIST---"
|
||||
ls target/debug/deps
|
||||
echo "---END_LIST---"
|
||||
for file in target/debug/deps/leo*-*[^\.d];
|
||||
do
|
||||
mkdir -p "target/cov/$(basename $file)";
|
||||
echo "Processing target/cov/$(basename $file)"
|
||||
/usr/local/bin/kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file";
|
||||
done
|
||||
#for file in target/debug/deps/leo*-*[^\.d];
|
||||
# do
|
||||
# mkdir -p "target/cov/$(basename $file)";
|
||||
# echo "Processing target/cov/$(basename $file)"
|
||||
# /usr/local/bin/kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file";
|
||||
# done
|
||||
for file in target/debug/deps/*-*;
|
||||
do
|
||||
if [[ "$file" != *\.* ]];
|
||||
then mkdir -p "target/cov/$(basename $file)";
|
||||
/usr/local/bin/kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file";
|
||||
fi
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user