Skip to content

Commit 27f85cc

Browse files
committed
Fixes rust-lang#9
1 parent 65bd81a commit 27f85cc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ addons:
2828
- libedit-dev
2929
- libdw-dev
3030
- binutils-dev
31+
- libiberty-dev
3132

3233
before_install:
3334
- export PATH=/usr/lib/llvm-3.7/bin/:$HOME/.local/bin:$PATH
@@ -43,7 +44,7 @@ after_success: |
4344
make install DESTDIR=../../kcov-build &&
4445
cd ../.. &&
4546
rm -rf kcov-master &&
46-
for file in target/debug/{inkwell,tests}-*[^\.d]; do mkdir -p "target/cov/$(basename $file)"; ./kcov-build/usr/local/bin/kcov --exclude-pattern=/.cargo,/usr/lib,tests --verify "target/cov/$(basename $file)" "$file"; done &&
47+
for file in $(find . -regex "./target/debug/tests-.*[^\.d]"); do mkdir -p "target/cov/$(basename $file)"; ./kcov-build/usr/local/bin/kcov --exclude-pattern=/.cargo,/usr/lib,tests --verify "target/cov/$(basename $file)" "$file"; done &&
4748
bash <(curl -s https://codecov.io/bash) &&
4849
echo "Uploaded code coverage"
4950

0 commit comments

Comments
 (0)