From aed6522e27c457749f0d1a3376989474f3de4d54 Mon Sep 17 00:00:00 2001 From: Googler Date: Fri, 16 Dec 2022 06:00:16 -0800 Subject: [PATCH] Disable a test case in git_repository_test.sh on Windows Due to https://github.com/bazelbuild/bazel/issues/17040 PiperOrigin-RevId: 495854505 Change-Id: I90d8d537e87f7ea51fa79b2847997c280baccf7f --- src/test/shell/bazel/git_repository_test.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/test/shell/bazel/git_repository_test.sh b/src/test/shell/bazel/git_repository_test.sh index 4d352a201d61b8..05ff5ca80b2419 100755 --- a/src/test/shell/bazel/git_repository_test.sh +++ b/src/test/shell/bazel/git_repository_test.sh @@ -254,6 +254,10 @@ EOF # planets has a dependency on targets in the $TEST_TMPDIR/outer_planets Git # repository. function test_new_git_repository_submodules() { + # Temporarily disable on Windows due to https://github.com/bazelbuild/bazel/issues/17040 + if $is_windows; then + return + fi local outer_planets_repo_dir=$TEST_TMPDIR/repos/outer-planets # Create a workspace that clones the outer_planets repository.