Skip to content

Commit a68a725

Browse files
committed
netlink: break integration tests into separate Go module
Signed-off-by: Matt Layher <[email protected]>
1 parent c2cb74e commit a68a725

File tree

8 files changed

+652
-479
lines changed

8 files changed

+652
-479
lines changed

.github/workflows/linux-integration-test.yml

+10-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,16 @@ jobs:
2828
- name: Create a network namespace for privileged tests
2929
run: sudo ip netns add unpriv0
3030

31-
- name: Build test binary for privileged tests
31+
- name: Build netlink test binary for privileged tests
3232
run: go test -c -race .
3333

34-
- name: Run privileged tests
34+
- name: Run privileged netlink tests
3535
run: sudo ./netlink.test -test.v -test.run TestIntegration*
36+
37+
- name: Build integration test binary for privileged tests
38+
working-directory: ./internal/integration
39+
run: go test -c -race .
40+
41+
- name: Run privileged integration tests
42+
working-directory: ./internal/integration
43+
run: sudo ./integration.test -test.v

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
internal/integration/integration.test
12
netlink.test
23
netlink-fuzz.zip
34
testdata/

0 commit comments

Comments
 (0)