Comment why certain tests are disabled under TSAN

This makes it clear that it is due to a known limitation of TSan and not
some lurking thread safety issue.
This commit is contained in:
ridiculousfish 2021-12-28 21:35:30 -08:00
parent ef281c7c4e
commit bbb2f5aa14
2 changed files with 4 additions and 2 deletions

View File

@ -44,7 +44,8 @@ expect_prompt()
timeout = 0.15
if "CI" in os.environ:
# This doesn't work under tsan.
# This doesn't work under TSan, because TSan prevents select() being
# interrupted by a signal.
import sys
print("SKIPPING the last of bind_mode_events.py")
sys.exit(0)

View File

@ -16,7 +16,8 @@ expect_prompt()
timeout = 0.15
if "CI" in os.environ:
# This doesn't work under tsan.
# This doesn't work under TSan, because TSan prevents select() being
# interrupted by a signal.
import sys
print("SKIPPING cancel_event.py")
sys.exit(0)