Skip to content

Commit 2158dac

Browse files
meteorcloudycopybara-github
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 2ca45d2 commit 2158dac

File tree

1 file changed

+0
-26
lines changed

1 file changed

+0
-26
lines changed

src/test/py/bazel/bazel_windows_cpp_test.py

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -872,32 +872,6 @@ def testBuild32BitCppBinaryWithMsvcCL(self):
872872
self.AssertExitCode(exit_code, 0, stderr)
873873
self.assertIn('x86\\cl.exe', '\n'.join(stderr))
874874

875-
def testBuildArmCppBinaryWithMsvcCL(self):
876-
self.createModuleDotBazel()
877-
self.ScratchFile('BUILD', [
878-
'platform(',
879-
' name = "windows_arm",',
880-
' constraint_values = [',
881-
' "@platforms//cpu:arm",',
882-
' "@platforms//os:windows",',
883-
' ]',
884-
')',
885-
'cc_binary(',
886-
' name = "main",',
887-
' srcs = ["main.cc"],',
888-
')',
889-
])
890-
self.ScratchFile('main.cc', [
891-
'int main() {',
892-
' return 0;',
893-
'}',
894-
])
895-
exit_code, _, stderr = self.RunBazel(
896-
['build', '-s', '--platforms=//:windows_arm', '//:main']
897-
)
898-
self.AssertExitCode(exit_code, 0, stderr)
899-
self.assertIn('arm\\cl.exe', '\n'.join(stderr))
900-
901875
def testBuildArm64CppBinaryWithMsvcCLAndCpuX64Arm64Windows(self):
902876
self.createModuleDotBazel()
903877
self.ScratchFile('BUILD', [

0 commit comments

Comments
 (0)