Add freebsd test workflow (#2127)

This commit is contained in:
Maycon Santos
2024-06-14 11:17:55 +02:00
committed by GitHub
parent 1f926d15b8
commit 1609b21b5b
8 changed files with 202 additions and 157 deletions

View File

@ -5,6 +5,7 @@ package systemops
import (
"fmt"
"net"
"runtime"
"strings"
"testing"
"time"
@ -85,6 +86,10 @@ var testCases = []testCase{
func TestRouting(t *testing.T) {
for _, tc := range testCases {
// todo resolve test execution on freebsd
if runtime.GOOS == "freebsd" {
t.Skip("skipping ", tc.name, " on freebsd")
}
t.Run(tc.name, func(t *testing.T) {
setupTestEnv(t)