gh-151422: Don't link libffi into _ctypes_test.so by hoodmane · Pull Request #151423 · python/cpython · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 2 additions & 1 deletion Lib/test/test_ctypes/test_as_parameter.py
7 changes: 7 additions & 0 deletions Lib/test/test_ctypes/test_structures.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,9 +299,16 @@ class X(Structure):
self.assertEqual(s.first, got.first)
self.assertEqual(s.second, got.second)

@unittest.skipIf(support.is_wasm32, "wasm ABI is incompatible with test expectations")
def _test_issue18060(self, Vector):
# Regression tests for gh-62260

# This test passes a struct of two doubles by value to atan2(), whose C
# signature is atan2(double, double), so it only works on platforms
# where the abi of a function that takes a struct with two doubles
# matches the abi of a function that takes two doubles. The wasm32 ABI
# does not satisfy this condition and the test breaks.

# The call to atan2() should succeed if the
# class fields were correctly cloned in the
# subclasses. Otherwise, it will segfault.
Expand Down
4 changes: 2 additions & 2 deletions configure

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion configure.ac
Loading