16 lines
333 B
Bash
Executable File
16 lines
333 B
Bash
Executable File
#!/bin/bash
|
|
set -eo pipefail
|
|
for file in target/debug/*-*[^\.d]; do
|
|
if [[ -x "$file" ]]
|
|
then
|
|
filename=$(basename $file)
|
|
if [[ $filename =~ ^plume_macro ]]; then
|
|
rm $file
|
|
continue
|
|
fi
|
|
mkdir -p "target/cov/$filename"
|
|
kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$filename" "$file"
|
|
rm $file
|
|
fi
|
|
done
|