mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-08 19:31:14 -03:00
These tests are unreliable in CI when running with address sanitiation enabled, resulting in intermittent CI failures. Disable them to get rid of the many false positives to reduce annoyance and to avoid desensitization regarding failures of the asan CI job. Suggested in https://github.com/fish-shell/fish-shell/pull/12132#issuecomment-3605639954 Closes #12142 Closes #12132 Closes #12126
16 lines
268 B
Fish
16 lines
268 B
Fish
# RUN: %fish %s
|
|
# REQUIRES: command -v tmux
|
|
|
|
tmux_wait=false \
|
|
isolated-tmux-start -C '
|
|
function fish_prompt
|
|
command printf "%% "
|
|
end
|
|
'
|
|
|
|
isolated-tmux send-keys 'echo hello'
|
|
tmux-sleep
|
|
tmux-sleep
|
|
isolated-tmux capture-pane -p
|
|
# CHECK: % echo hello
|