From c5e541ba544b5990dbc4934cda5db7585be0062c Mon Sep 17 00:00:00 2001 From: Vladimir Chalupecky Date: Fri, 18 Dec 2015 10:45:40 +0900 Subject: [PATCH] Add noasm tag to coverage tests --- .travis/test-coverage.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis/test-coverage.sh b/.travis/test-coverage.sh index 854f8c3..295ec6a 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