Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FreeBSD kernel support #128

Merged
merged 10 commits into from
Nov 4, 2022
Prev Previous commit
Next Next commit
test: increase test timeout for slow FreeBSD tests
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
  • Loading branch information
stv0g committed Oct 11, 2022
commit 86b20a7f1e384c926258079c774bc906b1c90f40
2 changes: 1 addition & 1 deletion client_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func TestIntegrationClient(t *testing.T) {
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
// Panic if a specific test takes too long.
timer := time.AfterFunc(1*time.Minute, func() {
timer := time.AfterFunc(5*time.Minute, func() {
panic("test took too long")
})
defer timer.Stop()
Expand Down