mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 13:23:09 +00:00
tests/pexpect: Disable wait.py under SAN CI
This commit is contained in:
parent
055e40467f
commit
8d5a223b39
1 changed files with 7 additions and 0 deletions
|
@ -1,6 +1,13 @@
|
|||
#!/usr/bin/env python3
|
||||
from pexpect_helper import SpawnedProc
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
||||
# Disable under SAN - keeps failing because the timing is too tight
|
||||
if "FISH_CI_SAN" in os.environ:
|
||||
sys.exit(0)
|
||||
|
||||
sp = SpawnedProc()
|
||||
send, sendline, sleep, expect_prompt, expect_re, expect_str = (
|
||||
sp.send,
|
||||
|
|
Loading…
Reference in a new issue