diff --git a/.travis/test-coverage.sh b/.travis/test-coverage.sh index 854f8c3a..295ec6a1 100755 --- a/.travis/test-coverage.sh +++ b/.travis/test-coverage.sh @@ -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 @@ -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