mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 10:26:33 +08:00
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:
parent
ef281c7c4e
commit
bbb2f5aa14
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue
Block a user