From 2e1287564dd0ebdc963897d9c9f1b2ec84c92b0d Mon Sep 17 00:00:00 2001 From: Matej Kralik Date: Thu, 3 Oct 2024 12:59:12 +0200 Subject: [PATCH] Skip P/Z in TestExposeGrpcWithHttpsGateway for now (#749) --- pkg/tests/tasks/traffic/ingress/grpc_https_gateway_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkg/tests/tasks/traffic/ingress/grpc_https_gateway_test.go b/pkg/tests/tasks/traffic/ingress/grpc_https_gateway_test.go index 0fdf67a3..ef1af1c4 100644 --- a/pkg/tests/tasks/traffic/ingress/grpc_https_gateway_test.go +++ b/pkg/tests/tasks/traffic/ingress/grpc_https_gateway_test.go @@ -44,6 +44,10 @@ func TestExposeGrpcWithHttpsGateway(t *testing.T) { t.Log("This test verifies tls decapsulation of grpc messages in gateway.") + if env.GetArch() == "z" || env.GetArch() == "p" { + t.Skip("gcr.io/istio-testing/app:latest image is not supported on IBM Z&P") + } + t.Cleanup(func() { app.Uninstall(t, app.GrpCurl(ns.Default)) oc.DeleteNamespace(t, ns.EchoGrpc)