You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
542 B
19 lines
542 B
import os.path
|
|
import sys
|
|
import unittest
|
|
from test import support
|
|
|
|
if support.PGO:
|
|
raise unittest.SkipTest("test is not helpful for PGO")
|
|
|
|
if sys.platform == "win32":
|
|
raise unittest.SkipTest("fork is not available on Windows")
|
|
|
|
if sys.platform == 'darwin':
|
|
raise unittest.SkipTest("test may crash on macOS (bpo-33725)")
|
|
|
|
if support.check_sanitizer(thread=True):
|
|
raise unittest.SkipTest("TSAN doesn't support threads after fork")
|
|
|
|
def load_tests(*args):
|
|
return support.load_package_tests(os.path.dirname(__file__), *args)
|
|
|