From 54e6122af73c3f2247b9d2722ca2481507b469f6 Mon Sep 17 00:00:00 2001 From: Sarah Jamie Lewis Date: Fri, 19 Nov 2021 14:13:28 -0800 Subject: [PATCH] Remove outdated tests in test script --- testing/tests.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/testing/tests.sh b/testing/tests.sh index 8a3d9a7..4c0c958 100755 --- a/testing/tests.sh +++ b/testing/tests.sh @@ -5,12 +5,10 @@ pwd GORACE="haltonerror=1" go test -race ${1} -coverprofile=model.cover.out -v ./model go test -race ${1} -coverprofile=event.cover.out -v ./event -go test -race ${1} -coverprofile=storage.v0.cover.out -v ./storage/v0 go test -race ${1} -coverprofile=storage.v1.cover.out -v ./storage/v1 go test -race ${1} -coverprofile=storage.cover.out -v ./storage go test -race ${1} -coverprofile=peer.connections.cover.out -v ./protocol/connections go test -race ${1} -coverprofile=peer.filesharing.cover.out -v ./protocol/files -go test -race ${1} -coverprofile=peer.cover.out -v ./peer echo "mode: set" > coverage.out && cat *.cover.out | grep -v mode: | sort -r | \ awk '{if($1 != last) {print $0;last=$1}}' >> coverage.out rm -rf *.cover.out