We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 999da27 commit dddab4cCopy full SHA for dddab4c
test/bpf_ut/Makefile
@@ -1,13 +1,17 @@
1
ROOT_DIR := $(shell git rev-parse --show-toplevel)
2
3
-.PHONY: all build-bpf-tests clean
+.PHONY: all build-bpf-tests run clean
4
5
all: build-bpf-tests
6
7
build-bpf-tests:
8
@echo "Building BPF unit tests..."
9
@bash $(ROOT_DIR)/test/bpf_ut/build_bpf_ut_tests.sh
10
11
+run: build-bpf-tests
12
+ @echo "Running BPF unit tests..."
13
+ @cd $(ROOT_DIR)/test/bpf_ut/bpftest && go test -v ./...
14
+
15
clean:
16
@echo "Cleaning build files..."
17
@rm -f $(ROOT_DIR)/test/bpf_ut/*.o
0 commit comments