Skip to content

Commit 055d5df

Browse files
committed
check test
1 parent 3d533b2 commit 055d5df

File tree

2 files changed

+22
-4
lines changed

2 files changed

+22
-4
lines changed

.github/workflows/reusable-run.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,20 @@ jobs:
7777
run: make deps
7878

7979
- name: Run regression tests
80-
run: make test
80+
run: |
81+
go test -run TestConnectionHandlerDeactivated_on_remove
82+
go test -run TestConnectionHandlerDeactivated_on_remove
83+
go test -run TestConnectionHandlerDeactivated_on_remove
84+
go test -run TestConnectionHandlerDeactivated_on_remove
85+
go test -run TestConnectionHandlerDeactivated_on_remove
8186
8287
- name: Run race tests
83-
run: make testrace
88+
run: |
89+
go test -race -run TestConnectionHandlerDeactivated_on_remove
90+
go test -race -run TestConnectionHandlerDeactivated_on_remove
91+
go test -race -run TestConnectionHandlerDeactivated_on_remove
92+
go test -race -run TestConnectionHandlerDeactivated_on_remove
93+
go test -race -run TestConnectionHandlerDeactivated_on_remove
8494
8595
- name: Run fuzzing tests
8696
if: ${{ inputs.fuzzing }}

.github/workflows/testing.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,12 +123,20 @@ jobs:
123123
- name: Run regression tests
124124
run: |
125125
cd "${SRCDIR}"
126-
make test
126+
go test -run TestConnectionHandlerDeactivated_on_remove
127+
go test -run TestConnectionHandlerDeactivated_on_remove
128+
go test -run TestConnectionHandlerDeactivated_on_remove
129+
go test -run TestConnectionHandlerDeactivated_on_remove
130+
go test -run TestConnectionHandlerDeactivated_on_remove
127131
128132
- name: Run race tests
129133
run: |
130134
cd "${SRCDIR}"
131-
make testrace
135+
go test -race -run TestConnectionHandlerDeactivated_on_remove
136+
go test -race -run TestConnectionHandlerDeactivated_on_remove
137+
go test -race -run TestConnectionHandlerDeactivated_on_remove
138+
go test -race -run TestConnectionHandlerDeactivated_on_remove
139+
go test -race -run TestConnectionHandlerDeactivated_on_remove
132140
133141
- name: Run fuzzing tests
134142
if: ${{ matrix.fuzzing }}

0 commit comments

Comments
 (0)