Skip to content

Commit 4c7e9dd

Browse files
meteorcloudymbland
authored andcommitted
Remove testBuildArmCppBinaryWithMsvcCL on Windows
It is broken after we updated our Windows VM image https://buildkite.com/bazel/bazel-bazel/builds/32939#0198c1fa-889a-4a10-abd2-e2dbddaa9fbe, and the 32bit arm platform isn't that important to support. RELNOTES: None PiperOrigin-RevId: 796863091 Change-Id: Ia9135370fd3f113e2ab76c4284d26b9cadaed25b
1 parent c75798d commit 4c7e9dd

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

src/test/py/bazel/bazel_windows_cpp_test.py

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -900,26 +900,6 @@ def testBuild32BitCppBinaryWithMsvcCL(self):
900900
self.AssertExitCode(exit_code, 0, stderr)
901901
self.assertIn('x86\\cl.exe', '\n'.join(stderr))
902902

903-
def testBuildArmCppBinaryWithMsvcCL(self):
904-
self.CreateWorkspaceWithDefaultRepos('WORKSPACE')
905-
self.ScratchFile('BUILD', [
906-
'cc_binary(',
907-
' name = "main",',
908-
' srcs = ["main.cc"],',
909-
')',
910-
])
911-
self.ScratchFile('main.cc', [
912-
'int main() {',
913-
' return 0;',
914-
'}',
915-
])
916-
exit_code, _, stderr = self.RunBazel([
917-
'build', '-s', '--cpu=x64_arm_windows',
918-
'--noincompatible_enable_cc_toolchain_resolution', '//:main'
919-
])
920-
self.AssertExitCode(exit_code, 0, stderr)
921-
self.assertIn('arm\\cl.exe', '\n'.join(stderr))
922-
923903
def testBuildArm64CppBinaryWithMsvcCLAndCpuX64Arm64Windows(self):
924904
self.CreateWorkspaceWithDefaultRepos('WORKSPACE')
925905
self.ScratchFile('BUILD', [

0 commit comments

Comments
 (0)