Skip to content

Commit

Permalink
Only load interesting syscalls (#1855)
Browse files Browse the repository at this point in the history
  • Loading branch information
Molter73 authored Sep 27, 2024
1 parent 880d840 commit b79e261
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/integration-test-containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
- integration-tests/Dockerfile
- .github/workflows/integration-test-containers.yml
# Trigger rebuild
build-test-image:
name: Build the integration test image
runs-on: ubuntu-24.04
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/container/QA_TAG
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.0
2.0.1
4 changes: 4 additions & 0 deletions integration-tests/integration_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package integrationtests

import (
"strings"
"testing"

"github.com/stretchr/testify/suite"
Expand Down Expand Up @@ -536,5 +537,8 @@ func TestRingBuffer(t *testing.T) {
}

func TestUdpNetworkFlow(t *testing.T) {
if strings.Contains(config.VMInfo().Config, "rhel-8-4-sap") {
t.Skip("Skipping test on RHEL 8.4 SAP due to a verifier issue")
}
suite.Run(t, new(suites.UdpNetworkFlow))
}

0 comments on commit b79e261

Please sign in to comment.