Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 1 | |
Filip Tehlar | 671cf51 | 2023-01-31 10:34:18 +0100 | [diff] [blame] | 2 | ifeq ($(VERBOSE),) |
| 3 | VERBOSE=false |
| 4 | endif |
Maros Ondrejicka | 2ddb2fd | 2023-02-15 17:44:46 +0100 | [diff] [blame] | 5 | |
Filip Tehlar | 671cf51 | 2023-01-31 10:34:18 +0100 | [diff] [blame] | 6 | ifeq ($(PERSIST),) |
| 7 | PERSIST=false |
| 8 | endif |
| 9 | |
Maros Ondrejicka | af004dd | 2023-02-27 16:52:57 +0100 | [diff] [blame] | 10 | ifeq ($(UNCONFIGURE),) |
| 11 | UNCONFIGURE=false |
| 12 | endif |
| 13 | |
Filip Tehlar | 671cf51 | 2023-01-31 10:34:18 +0100 | [diff] [blame] | 14 | ifeq ($(TEST),) |
| 15 | TEST=all |
| 16 | endif |
| 17 | |
Filip Tehlar | ec5c40b | 2023-02-28 18:59:15 +0100 | [diff] [blame] | 18 | ifeq ($(DEBUG),) |
| 19 | DEBUG=false |
| 20 | endif |
| 21 | |
Filip Tehlar | 608d006 | 2023-04-28 10:29:47 +0200 | [diff] [blame] | 22 | ifeq ($(CPUS),) |
| 23 | CPUS=1 |
| 24 | endif |
| 25 | |
Dave Wallace | 05120fb | 2023-03-07 22:09:20 -0500 | [diff] [blame] | 26 | ifeq ($(UBUNTU_CODENAME),) |
| 27 | UBUNTU_CODENAME=$(shell grep '^UBUNTU_CODENAME=' /etc/os-release | cut -f2- -d=) |
| 28 | endif |
| 29 | |
| 30 | ifeq ($(ARCH),) |
| 31 | ARCH=$(shell dpkg --print-architecture) |
| 32 | endif |
| 33 | |
Filip Tehlar | 671cf51 | 2023-01-31 10:34:18 +0100 | [diff] [blame] | 34 | list_tests = @(grep -r ') Test' *_test.go | cut -d '*' -f2 | cut -d '(' -f1 | \ |
| 35 | tr -d ' ' | tr ')' '/' | sed 's/Suite//') |
| 36 | |
| 37 | .PHONY: help |
| 38 | help: |
| 39 | @echo "Make targets:" |
| 40 | @echo " test - run tests" |
| 41 | @echo " build - build test infra" |
| 42 | @echo " build-debug - build test infra (vpp debug image)" |
| 43 | @echo " build-go - just build golang files" |
| 44 | @echo " fixstyle - format .go source files" |
| 45 | @echo " list-tests - list all tests" |
| 46 | @echo |
Filip Tehlar | 31eaea9 | 2023-06-15 10:06:57 +0200 | [diff] [blame] | 47 | @echo "make build arguments:" |
Filip Tehlar | 671cf51 | 2023-01-31 10:34:18 +0100 | [diff] [blame] | 48 | @echo " UBUNTU_VERSION - ubuntu version for docker image" |
Filip Tehlar | 31eaea9 | 2023-06-15 10:06:57 +0200 | [diff] [blame] | 49 | @echo " HST_EXTENDED_TESTS - build extended tests" |
| 50 | @echo |
| 51 | @echo "make test arguments:" |
Filip Tehlar | 671cf51 | 2023-01-31 10:34:18 +0100 | [diff] [blame] | 52 | @echo " PERSIST=[true|false] - whether clean up topology and dockers after test" |
| 53 | @echo " VERBOSE=[true|false] - verbose output" |
Florin Coras | e2415f7 | 2023-02-28 14:51:03 -0800 | [diff] [blame] | 54 | @echo " UNCONFIGURE=[true|false] - unconfigure selected test" |
Filip Tehlar | ec5c40b | 2023-02-28 18:59:15 +0100 | [diff] [blame] | 55 | @echo " DEBUG=[true|false] - attach VPP to GDB" |
Filip Tehlar | 671cf51 | 2023-01-31 10:34:18 +0100 | [diff] [blame] | 56 | @echo " TEST=[test-name] - specific test to run" |
Filip Tehlar | 608d006 | 2023-04-28 10:29:47 +0200 | [diff] [blame] | 57 | @echo " CPUS=[n-cpus] - number of cpus to run with vpp" |
Filip Tehlar | 671cf51 | 2023-01-31 10:34:18 +0100 | [diff] [blame] | 58 | @echo |
| 59 | @echo "List of all tests:" |
| 60 | $(call list_tests) |
| 61 | |
| 62 | .PHONY: list-tests |
| 63 | list-tests: |
| 64 | $(call list_tests) |
| 65 | |
| 66 | build-vpp-release: |
| 67 | @make -C ../.. build-release |
| 68 | |
| 69 | build-vpp-debug: |
| 70 | @make -C ../.. build |
| 71 | |
| 72 | .PHONY: test |
| 73 | test: .deps.ok .build.vpp |
Maros Ondrejicka | af004dd | 2023-02-27 16:52:57 +0100 | [diff] [blame] | 74 | @bash ./test --persist=$(PERSIST) --verbose=$(VERBOSE) \ |
Filip Tehlar | 608d006 | 2023-04-28 10:29:47 +0200 | [diff] [blame] | 75 | --unconfigure=$(UNCONFIGURE) --debug=$(DEBUG) --test=$(TEST) --cpus=$(CPUS) |
Filip Tehlar | 671cf51 | 2023-01-31 10:34:18 +0100 | [diff] [blame] | 76 | |
| 77 | build-go: |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 78 | go build ./tools/http_server |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 79 | |
Filip Tehlar | 671cf51 | 2023-01-31 10:34:18 +0100 | [diff] [blame] | 80 | build: .deps.ok build-vpp-release build-go |
Dave Wallace | 05120fb | 2023-03-07 22:09:20 -0500 | [diff] [blame] | 81 | @rm -f .build.vpp |
Filip Tehlar | 31eaea9 | 2023-06-15 10:06:57 +0200 | [diff] [blame] | 82 | bash ./script/build_hst.sh release |
Filip Tehlar | 671cf51 | 2023-01-31 10:34:18 +0100 | [diff] [blame] | 83 | @touch .build.vpp |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 84 | |
Filip Tehlar | 671cf51 | 2023-01-31 10:34:18 +0100 | [diff] [blame] | 85 | build-debug: .deps.ok build-vpp-debug build-go |
Dave Wallace | 05120fb | 2023-03-07 22:09:20 -0500 | [diff] [blame] | 86 | @rm -f .build.vpp |
Filip Tehlar | 31eaea9 | 2023-06-15 10:06:57 +0200 | [diff] [blame] | 87 | bash ./script/build_hst.sh debug |
Filip Tehlar | 671cf51 | 2023-01-31 10:34:18 +0100 | [diff] [blame] | 88 | @touch .build.vpp |
| 89 | |
Dave Wallace | d0df24d | 2023-04-26 18:03:03 -0400 | [diff] [blame] | 90 | .deps.ok: |
| 91 | @sudo make install-deps |
| 92 | |
Filip Tehlar | 671cf51 | 2023-01-31 10:34:18 +0100 | [diff] [blame] | 93 | .PHONY: install-deps |
| 94 | install-deps: |
Dave Wallace | 05120fb | 2023-03-07 22:09:20 -0500 | [diff] [blame] | 95 | @rm -f .deps.ok |
Dave Wallace | f72bb6f | 2023-03-08 13:53:32 -0500 | [diff] [blame] | 96 | @apt-get update \ |
| 97 | && apt-get install -y apt-transport-https ca-certificates curl software-properties-common \ |
| 98 | && apt-get install -y golang apache2-utils wrk bridge-utils |
| 99 | @if [ ! -f /usr/share/keyrings/docker-archive-keyring.gpg ] ; then \ |
| 100 | curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg; \ |
| 101 | echo "deb [arch=$(ARCH) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(UBUNTU_CODENAME) stable" \ |
| 102 | | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null ; \ |
| 103 | apt-get update; \ |
| 104 | fi |
| 105 | @apt-get install -y docker-ce |
Filip Tehlar | 671cf51 | 2023-01-31 10:34:18 +0100 | [diff] [blame] | 106 | @touch .deps.ok |
| 107 | |
| 108 | .PHONY: fixstyle |
Filip Tehlar | f3ee2b6 | 2023-01-09 12:07:09 +0100 | [diff] [blame] | 109 | fixstyle: |
| 110 | @gofmt -w . |
Maros Ondrejicka | 7d7ab10 | 2023-02-14 12:56:49 +0100 | [diff] [blame] | 111 | @go mod tidy |