summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-03-16 17:05:28 +0300
committerValery Piashchynski <[email protected]>2021-03-16 17:05:28 +0300
commite5508fa1ae3a068913b54fa7aaef2a47bca91f76 (patch)
tree386fd7c985c464170afe6523dc5e57d6a85a1616 /Makefile
parenteec190334e03012e9dfc3ba83c106d8b3974b238 (diff)
🐛 fix issue with strange messages in the http body when max request
reached Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 5e5f1cd7..84735f67 100755
--- a/Makefile
+++ b/Makefile
@@ -36,7 +36,7 @@ test_coverage:
go test -v -race -cover -tags=debug -coverpkg=./... -coverprofile=./coverage/informer.out -covermode=atomic ./tests/plugins/informer
go test -v -race -cover -tags=debug -coverpkg=./... -coverprofile=./coverage/reload.out -covermode=atomic ./tests/plugins/reload
go test -v -race -cover -tags=debug -coverpkg=./... -coverprofile=./coverage/server.out -covermode=atomic ./tests/plugins/server
- go test -v -race -cover -tags=debug -coverpkg=./... -coverprofile=./coverage/checker.out -covermode=atomic ./tests/plugins/checker
+ go test -v -race -cover -tags=debug -coverpkg=./... -coverprofile=./coverage/status.out -covermode=atomic ./tests/plugins/status
go test -v -race -cover -tags=debug -coverpkg=./... -coverprofile=./coverage/config.out -covermode=atomic ./tests/plugins/config
go test -v -race -cover -tags=debug -coverpkg=./... -coverprofile=./coverage/gzip.out -covermode=atomic ./tests/plugins/gzip
go test -v -race -cover -tags=debug -coverpkg=./... -coverprofile=./coverage/headers.out -covermode=atomic ./tests/plugins/headers
@@ -68,7 +68,7 @@ test: ## Run application tests
go test -v -race -tags=debug ./tests/plugins/informer
go test -v -race -tags=debug ./tests/plugins/reload
go test -v -race -tags=debug ./tests/plugins/server
- go test -v -race -tags=debug ./tests/plugins/checker
+ go test -v -race -tags=debug ./tests/plugins/status
go test -v -race -tags=debug ./tests/plugins/config
go test -v -race -tags=debug ./tests/plugins/gzip
go test -v -race -tags=debug ./tests/plugins/headers
@@ -98,7 +98,7 @@ test_1.14: ## Run application tests
go1.14.14 test -v -race -tags=debug ./tests/plugins/informer
go1.14.14 test -v -race -tags=debug ./tests/plugins/reload
go1.14.14 test -v -race -tags=debug ./tests/plugins/server
- go1.14.14 test -v -race -tags=debug ./tests/plugins/checker
+ go1.14.14 test -v -race -tags=debug ./tests/plugins/status
go1.14.14 test -v -race -tags=debug ./tests/plugins/config
go1.14.14 test -v -race -tags=debug ./tests/plugins/gzip
go1.14.14 test -v -race -tags=debug ./tests/plugins/headers
@@ -128,7 +128,7 @@ test_1.16: ## Run application tests
go1.16rc1 test -v -race -tags=debug ./tests/plugins/informer
go1.16rc1 test -v -race -tags=debug ./tests/plugins/reload
go1.16rc1 test -v -race -tags=debug ./tests/plugins/server
- go1.16rc1 test -v -race -tags=debug ./tests/plugins/checker
+ go1.16rc1 test -v -race -tags=debug ./tests/plugins/status
go1.16rc1 test -v -race -tags=debug ./tests/plugins/config
go1.16rc1 test -v -race -tags=debug ./tests/plugins/gzip
go1.16rc1 test -v -race -tags=debug ./tests/plugins/headers