Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/base_rules/py_executable_base_tests.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ def _test_basic_windows(name, config):
"//command_line_option:crosstool_top": CROSSTOOL_TOP,
"//command_line_option:extra_toolchains": [CC_TOOLCHAIN],
"//command_line_option:platforms": [WINDOWS_X86_64],
"//command_line_option:extra_execution_platforms": [WINDOWS_X86_64],
},
attr_values = {"target_compatible_with": target_compatible_with},
)
Expand Down Expand Up @@ -98,6 +99,7 @@ def _test_basic_zip(name, config):
"//command_line_option:crosstool_top": CROSSTOOL_TOP,
"//command_line_option:extra_toolchains": [CC_TOOLCHAIN],
"//command_line_option:platforms": [LINUX_X86_64],
"//command_line_option:extra_execution_platforms": [LINUX_X86_64],
},
attr_values = {"target_compatible_with": target_compatible_with},
)
Expand Down
2 changes: 2 additions & 0 deletions tests/base_rules/py_test/py_test_tests.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ def _test_mac_requires_darwin_for_execution(name, config):
"//command_line_option:crosstool_top": CROSSTOOL_TOP,
"//command_line_option:extra_toolchains": CC_TOOLCHAIN,
"//command_line_option:platforms": [MAC_X86_64],
"//command_line_option:extra_execution_platforms": [MAC_X86_64],
},
attr_values = _SKIP_WINDOWS,
)
Expand Down Expand Up @@ -94,6 +95,7 @@ def _test_non_mac_doesnt_require_darwin_for_execution(name, config):
"//command_line_option:crosstool_top": CROSSTOOL_TOP,
"//command_line_option:extra_toolchains": CC_TOOLCHAIN,
"//command_line_option:platforms": [LINUX_X86_64],
"//command_line_option:extra_execution_platforms": [LINUX_X86_64],
},
attr_values = _SKIP_WINDOWS,
)
Expand Down