From ad97d7b9db2efab18b177cb0a645735b3a1e966a Mon Sep 17 00:00:00 2001 From: Justine Tunney Date: Thu, 23 Feb 2023 08:56:31 -0800 Subject: [PATCH] Disable Python test_sys --- third_party/python/python.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/third_party/python/python.mk b/third_party/python/python.mk index 9f7a9bb05..e26b7a26f 100644 --- a/third_party/python/python.mk +++ b/third_party/python/python.mk @@ -1937,7 +1937,6 @@ THIRD_PARTY_PYTHON_PYTEST_PYMAINS = \ third_party/python/Lib/test/test_symbol.py \ third_party/python/Lib/test/test_symtable.py \ third_party/python/Lib/test/test_syntax.py \ - third_party/python/Lib/test/test_sys.py \ third_party/python/Lib/test/test_sys_setprofile.py \ third_party/python/Lib/test/test_syslog.py \ third_party/python/Lib/test/test_tarfile.py \ @@ -1979,8 +1978,10 @@ THIRD_PARTY_PYTHON_PYTEST_PYMAINS = \ third_party/python/Lib/test/test_zlib.py # TODO: test_threading passing probably requires more mutexes in libc/calls/ +# TODO: test_sys is potentially flaky now that we have threads THIRD_PARTY_PYTHON_PYTEST_TODOS = \ + third_party/python/Lib/test/test_sys.py \ third_party/python/Lib/test/test_threading.py \ third_party/python/Lib/test/test_threading_local.py \ third_party/python/Lib/test/mp_preload.py \