blob: 7460026ed52b4529d1f14f66bf91a16a7008b72c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
ifeq ($(VERBOSE),)
VERBOSE=false
endif
ifeq ($(PERSIST),)
PERSIST=false
endif
ifeq ($(TEST),)
TEST=all
endif
list_tests = @(grep -r ') Test' *_test.go | cut -d '*' -f2 | cut -d '(' -f1 | \
tr -d ' ' | tr ')' '/' | sed 's/Suite//')
.PHONY: help
help:
@echo "Make targets:"
@echo " test - run tests"
@echo " build - build test infra"
@echo " build-debug - build test infra (vpp debug image)"
@echo " build-go - just build golang files"
@echo " fixstyle - format .go source files"
@echo " list-tests - list all tests"
@echo
@echo "Make arguments:"
@echo " UBUNTU_VERSION - ubuntu version for docker image"
@echo " PERSIST=[true|false] - whether clean up topology and dockers after test"
@echo " VERBOSE=[true|false] - verbose output"
@echo " TEST=[test-name] - specific test to run"
@echo
@echo "List of all tests:"
$(call list_tests)
.PHONY: list-tests
list-tests:
$(call list_tests)
build-vpp-release:
@make -C ../.. build-release
build-vpp-debug:
@make -C ../.. build
.PHONY: test
test: .deps.ok .build.vpp
@bash ./test --persist=$(PERSIST) --verbose=$(VERBOSE) --test=$(TEST)
build-go:
go build ./tools/http_server
build: .deps.ok build-vpp-release build-go
@rm .build.vpp || exit 0
bash ./script/build.sh release
@touch .build.vpp
build-debug: .deps.ok build-vpp-debug build-go
@rm .build.vpp || exit 0
bash ./script/build.sh debug
@touch .build.vpp
.PHONY: install-deps
install-deps:
@rm .deps.ok || exit 0
@apt update -y && apt install -y golang docker-ce apache2-utils wrk bridge-utils
@touch .deps.ok
.PHONY: fixstyle
fixstyle:
@gofmt -w .
@go mod tidy
|