Skip to content

Commit

Permalink
USM: tests: skip flaky AMQP & Postgres TLS classification tests (#26452)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yumasi authored Jun 7, 2024
1 parent 69d10fd commit 2f52d59
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/network/tracer/tracer_usm_linux_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1172,6 +1172,8 @@ func testPostgresProtocolClassificationWrapper(enableTLS bool) func(t *testing.T
}

func testPostgresProtocolClassification(t *testing.T, tr *Tracer, clientHost, targetHost, serverHost string, enableTLS bool) {
t.Skip("TLS+Postgres classification tests are flaky")

skippers := []func(t *testing.T, ctx testContext){skipIfUsingNAT}
if enableTLS {
skippers = append(skippers, skipIfGoTLSNotSupported)
Expand Down Expand Up @@ -1725,6 +1727,8 @@ var amqpTestSpecsMap = map[bool]amqpTestSpec{
}

func testAMQPProtocolClassificationInner(t *testing.T, tr *Tracer, clientHost, targetHost, serverHost string, withTLS bool) {
t.Skip("TLS+AMQP classification tests are flaky")

spec := amqpTestSpecsMap[withTLS]
composeSkips(spec.skipFuncs...)(t, testContext{
serverAddress: serverHost,
Expand Down

0 comments on commit 2f52d59

Please sign in to comment.