Skip to content

Commit e756907

Browse files
committed
Fixed #656. Build tests with tags for BPF and MLX options
1 parent b6e11fb commit e756907

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Diff for: test/stability/testCksum/Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ PATH_TO_MK = ../../../mk
66
IMAGENAME = nff-go-test-cksum
77
EXECUTABLES = testCksum
88

9+
.PHONY: testing
910
testing: check-pktgen
10-
go test -v -test.timeout 15m
11+
go test -v -tags "${GO_BUILD_TAGS}" -test.timeout 15m
1112

1213
include $(PATH_TO_MK)/leaf.mk

Diff for: test/stability/testMerge/Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ EXECUTABLES = testMerge
99
all:
1010
cp ../../framework/main/config.json .
1111

12+
.PHONY: testing
1213
testing: check-pktgen
13-
go test -v -test.timeout 20m
14+
go test -v -tags "${GO_BUILD_TAGS}" -test.timeout 20m
1415

1516
include $(PATH_TO_MK)/leaf.mk

Diff for: test/stability/testSingleWorkingFF/Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ EXECUTABLES = testSingleWorkingFF
99
all:
1010
cp ../../framework/main/config.json .
1111

12+
.PHONY: testing
1213
testing: check-pktgen
13-
go test
14+
go test -v -tags "${GO_BUILD_TAGS}"
1415

1516
include $(PATH_TO_MK)/leaf.mk

0 commit comments

Comments
 (0)