From daed9caf4c4636df9f1b5ea0b8feb209d025003e Mon Sep 17 00:00:00 2001 From: "Mark D. Roth" Date: Wed, 23 Mar 2022 15:24:21 -0700 Subject: [PATCH] fix path to xds_end2end_test (#29195) --- tools/internal_ci/linux/grpc_bazel_build_in_docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/internal_ci/linux/grpc_bazel_build_in_docker.sh b/tools/internal_ci/linux/grpc_bazel_build_in_docker.sh index 5043e312b98..77fb993124c 100755 --- a/tools/internal_ci/linux/grpc_bazel_build_in_docker.sh +++ b/tools/internal_ci/linux/grpc_bazel_build_in_docker.sh @@ -53,7 +53,7 @@ bazel build --define=use_strict_warning=true --define=use_abseil_status=true \ bazel build //test/cpp/end2end:end2end_test --define=grpc_no_xds=true # Test that builds that need xDS do not build with --define=grpc_no_xds=true EXIT_CODE=0 -bazel build //test/cpp/end2end:xds_end2end_test --define=grpc_no_xds=true || EXIT_CODE=$? +bazel build //test/cpp/end2end/xds:xds_end2end_test --define=grpc_no_xds=true || EXIT_CODE=$? if [ $EXIT_CODE -eq 0 ] then echo "Building xds_end2end_test succeeded even with --define=grpc_no_xds=true"