Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 096a04f

Browse files
authored
test: Enable non-ABI3 libs linking test for Windows (#2461)
Also explicitly include ABI3 in the name of the other Windows-only testcase, since that is the whole point of the test, and no ABI3-only libs exist on non-Windows platforms. ----------- Follow-up of #1820.
1 parent bc8658a commit 096a04f

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

tests/cc/current_py_cc_libs/BUILD.bazel

+1-10
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,6 @@ current_py_cc_libs_test_suite(name = "current_py_cc_libs_tests")
2020
cc_test(
2121
name = "python_libs_linking_test",
2222
srcs = ["python_libs_linking_test.cc"],
23-
# Windows fails with linking errors, but its not clear why; someone
24-
# with more C + Windows experience will have to figure it out.
25-
# - rickeylev@
26-
target_compatible_with = select({
27-
"@platforms//os:linux": [],
28-
"@platforms//os:osx": [],
29-
"//conditions:default": ["@platforms//:incompatible"],
30-
}),
3123
deps = [
3224
"@rules_python//python/cc:current_py_cc_headers",
3325
"@rules_python//python/cc:current_py_cc_libs",
@@ -41,10 +33,9 @@ cc_test(
4133
# for libs/python3.lib.
4234
# buildifier: disable=native-cc
4335
cc_test(
44-
name = "python_libs_linking_windows_test",
36+
name = "python_abi3_libs_linking_windows_test",
4537
srcs = ["python_libs_linking_test.cc"],
4638
defines = ["Py_LIMITED_API=0x030A0000"],
47-
env = {"HELLO": "world"},
4839
target_compatible_with = ["@platforms//os:windows"],
4940
deps = [
5041
"@rules_python//python/cc:current_py_cc_headers",

0 commit comments

Comments
 (0)