2024-03-15 13:07:16 -03:00
|
|
|
# Set of tests run by default if --tsan is specified. The tests below were
|
|
|
|
# chosen because they use threads and run in a reasonable amount of time.
|
|
|
|
|
|
|
|
TSAN_TESTS = [
|
2024-03-17 05:47:14 -03:00
|
|
|
# TODO: enable more of test_capi once bugs are fixed (GH-116908, GH-116909).
|
|
|
|
'test_capi.test_mem',
|
|
|
|
'test_capi.test_pyatomic',
|
2024-03-15 13:07:16 -03:00
|
|
|
'test_code',
|
|
|
|
'test_enum',
|
|
|
|
'test_functools',
|
|
|
|
'test_httpservers',
|
|
|
|
'test_imaplib',
|
|
|
|
'test_importlib',
|
|
|
|
'test_io',
|
|
|
|
'test_logging',
|
2024-03-16 11:52:44 -03:00
|
|
|
'test_queue',
|
2024-03-17 05:47:14 -03:00
|
|
|
'test_signal',
|
|
|
|
'test_socket',
|
|
|
|
'test_sqlite3',
|
2024-03-15 13:07:16 -03:00
|
|
|
'test_ssl',
|
|
|
|
'test_syslog',
|
|
|
|
'test_thread',
|
|
|
|
'test_threadedtempfile',
|
2024-03-16 08:55:46 -03:00
|
|
|
'test_threading',
|
2024-03-15 13:07:16 -03:00
|
|
|
'test_threading_local',
|
|
|
|
'test_threadsignals',
|
2024-03-16 11:52:44 -03:00
|
|
|
'test_weakref',
|
2024-03-15 13:07:16 -03:00
|
|
|
]
|
|
|
|
|
|
|
|
|
2024-11-04 06:15:57 -04:00
|
|
|
def setup_tsan_tests(cmdline_args) -> None:
|
2024-03-15 13:07:16 -03:00
|
|
|
if not cmdline_args:
|
|
|
|
cmdline_args[:] = TSAN_TESTS[:]
|