Skip to content
This repository has been archived by the owner on Nov 24, 2018. It is now read-only.

Commit

Permalink
Add noasm tag to coverage tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-ch committed Dec 18, 2015
1 parent ffdeed5 commit c5e541b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis/test-coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# with script found at https://github.com/gopns/gopns/blob/master/test-coverage.sh

echo "mode: set" > acc.out
returnval=`go test -v -coverprofile=profile.out`
returnval=`go test -v -coverprofile=profile.out -tags noasm`
echo ${returnval}
if [[ ${returnval} != *FAIL* ]]
then
Expand All @@ -21,7 +21,7 @@ do
if ls $Dir/*.go &> /dev/null;
then
echo $Dir
returnval=`go test -v -coverprofile=profile.out $Dir`
returnval=`go test -v -coverprofile=profile.out $Dir -tags noasm`
echo ${returnval}
if [[ ${returnval} != *FAIL* ]]
then
Expand Down

0 comments on commit c5e541b

Please sign in to comment.