mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-31 01:59:39 -05:00
Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.17.1 to 2.17.2. - [Release notes](https://github.com/onsi/ginkgo/releases) - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/ginkgo/compare/v2.17.1...v2.17.2) --- updated-dependencies: - dependency-name: github.com/onsi/ginkgo/v2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
55 lines
1.6 KiB
Makefile
55 lines
1.6 KiB
Makefile
BENCH ?=.
|
||
BENCH_BASE?=master
|
||
|
||
clean:
|
||
rm -f bin/reporter
|
||
rm -fr autobahn/report/*
|
||
|
||
bin/reporter:
|
||
go build -o bin/reporter ./autobahn
|
||
|
||
bin/gocovmerge:
|
||
go build -o bin/gocovmerge github.com/wadey/gocovmerge
|
||
|
||
.PHONY: autobahn
|
||
autobahn: clean bin/reporter
|
||
./autobahn/script/test.sh --build --follow-logs
|
||
bin/reporter $(PWD)/autobahn/report/index.json
|
||
|
||
.PHONY: autobahn/report
|
||
autobahn/report: bin/reporter
|
||
./bin/reporter -http localhost:5555 ./autobahn/report/index.json
|
||
|
||
test:
|
||
go test -coverprofile=ws.coverage .
|
||
go test -coverprofile=wsutil.coverage ./wsutil
|
||
go test -coverprofile=wsfalte.coverage ./wsflate
|
||
# No statemenets to cover in ./tests (there are only tests).
|
||
go test ./tests
|
||
|
||
cover: bin/gocovmerge test autobahn
|
||
bin/gocovmerge ws.coverage wsutil.coverage wsflate.coverage autobahn/report/server.coverage > total.coverage
|
||
|
||
benchcmp: BENCH_BRANCH=$(shell git rev-parse --abbrev-ref HEAD)
|
||
benchcmp: BENCH_OLD:=$(shell mktemp -t old.XXXX)
|
||
benchcmp: BENCH_NEW:=$(shell mktemp -t new.XXXX)
|
||
benchcmp:
|
||
if [ ! -z "$(shell git status -s)" ]; then\
|
||
echo "could not compare with $(BENCH_BASE) – found unstaged changes";\
|
||
exit 1;\
|
||
fi;\
|
||
if [ "$(BENCH_BRANCH)" == "$(BENCH_BASE)" ]; then\
|
||
echo "comparing the same branches";\
|
||
exit 1;\
|
||
fi;\
|
||
echo "benchmarking $(BENCH_BRANCH)...";\
|
||
go test -run=none -bench=$(BENCH) -benchmem > $(BENCH_NEW);\
|
||
echo "benchmarking $(BENCH_BASE)...";\
|
||
git checkout -q $(BENCH_BASE);\
|
||
go test -run=none -bench=$(BENCH) -benchmem > $(BENCH_OLD);\
|
||
git checkout -q $(BENCH_BRANCH);\
|
||
echo "\nresults:";\
|
||
echo "========\n";\
|
||
benchcmp $(BENCH_OLD) $(BENCH_NEW);\
|
||
|