diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-07-11 14:35:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-11 14:35:47 (GMT) |
commit | cfafd3adf8c3bb73881081f721e77ebfc94431ea (patch) | |
tree | 3172756d1968af8652415edd6a57f180893eac2b | |
parent | 86c1df18727568758cc329baddc1836e45664023 (diff) | |
download | cpython-cfafd3adf8c3bb73881081f721e77ebfc94431ea.zip cpython-cfafd3adf8c3bb73881081f721e77ebfc94431ea.tar.gz cpython-cfafd3adf8c3bb73881081f721e77ebfc94431ea.tar.bz2 |
GH-94736: mark SemLock test as linux only (GH-94750)
See https://buildbot.python.org/all/#/builders/172/builds/2522
The PR skips the test on non-linux platforms.
Automerge-Triggered-By: GH:pablogsal
-rw-r--r-- | Lib/test/_test_multiprocessing.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py index 4c4b9ac..e3e7ee3 100644 --- a/Lib/test/_test_multiprocessing.py +++ b/Lib/test/_test_multiprocessing.py @@ -6023,6 +6023,7 @@ def install_tests_in_module_dict(remote_globs, start_method): @unittest.skipIf(not hasattr(_multiprocessing, 'SemLock'), 'SemLock not available') +@unittest.skipIf(sys.platform != "linux", "Linux only") class SemLockTests(unittest.TestCase): def test_semlock_subclass(self): |