Skip to content

Commit

Permalink
ftw is broken on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jabdr committed Aug 24, 2024
1 parent d4c21d2 commit 080baec
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions testing/coreruleset/coreruleset_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (
"net/url"
"os"
"path/filepath"
"runtime"
"strconv"
"strings"
"testing"
Expand Down Expand Up @@ -147,6 +148,9 @@ func BenchmarkCRSLargePOST(b *testing.B) {
}

func TestFTW(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip()
}
conf := coraza.NewWAFConfig()

rec, err := os.ReadFile(filepath.Join("..", "..", "coraza.conf-recommended"))
Expand Down

0 comments on commit 080baec

Please sign in to comment.