mirror of
https://github.com/python/cpython.git
synced 2025-07-30 06:34:15 +00:00
bpo-37558: Shared memory tests are failing due to double slashes (GH-14703)
With the addition of shared memory into Python 3.8, we now have three tests failing on Solaris, namely `test_multiprocessing_fork`, `test_multiprocessing_forkserver` and `test_multiprocessing_spawn`. The reason seems to be incorrect name handling which results in two slashes being prepended.
https://bugs.python.org/issue37558
(cherry picked from commit 4737265622
)
Co-authored-by: Jakub Kulík <Kulikjak@gmail.com>
This commit is contained in:
parent
107171500d
commit
3d58b78481
2 changed files with 2 additions and 1 deletions
|
@ -3990,7 +3990,7 @@ class _TestSharedMemory(BaseTestCase):
|
|||
|
||||
# Create a shared_memory segment, and send the segment name
|
||||
sm = shared_memory.SharedMemory(create=True, size=10)
|
||||
sys.stdout.write(sm._name + '\\n')
|
||||
sys.stdout.write(sm.name + '\\n')
|
||||
sys.stdout.flush()
|
||||
time.sleep(100)
|
||||
'''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue