summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2021-09-06 16:55:34 (GMT)
committerGitHub <noreply@github.com>2021-09-06 16:55:34 (GMT)
commit19871fce3b74fc3f37e334a999e00d0ef65a8f1e (patch)
treee27735797585eec1282c761a3832c1be010811d1 /Misc
parent37272f5800ee1e9fcb2da4a1766366519b9b3d94 (diff)
downloadcpython-19871fce3b74fc3f37e334a999e00d0ef65a8f1e.zip
cpython-19871fce3b74fc3f37e334a999e00d0ef65a8f1e.tar.gz
cpython-19871fce3b74fc3f37e334a999e00d0ef65a8f1e.tar.bz2
bpo-45052: Unskips a failing `test_shared_memory_basics` test (GH-28182)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Tests/2021-09-06-19-00-29.bpo-45052.yrOK3J.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2021-09-06-19-00-29.bpo-45052.yrOK3J.rst b/Misc/NEWS.d/next/Tests/2021-09-06-19-00-29.bpo-45052.yrOK3J.rst
new file mode 100644
index 0000000..5c2e4f3
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2021-09-06-19-00-29.bpo-45052.yrOK3J.rst
@@ -0,0 +1,7 @@
+``WithProcessesTestSharedMemory.test_shared_memory_basics`` test was
+ignored, because ``self.assertEqual(sms.size, sms2.size)`` line was failing.
+It is now removed and test is unskipped.
+
+The main motivation for this line to be removed from the test is that the
+``size`` of ``SharedMemory`` is not ever guaranteed to be the same. It is
+decided by the platform.