From 56743ae770c8f9b284e312344a4801c852e640f3 Mon Sep 17 00:00:00 2001 From: Fabian Boehm Date: Thu, 11 May 2023 22:14:12 +0200 Subject: [PATCH] tests: More slack for ASAN Disable one and add a sleep to another --- tests/checks/tmux-complete.fish | 2 ++ tests/pexpects/eval-stack-overflow.py | 1 + 2 files changed, 3 insertions(+) diff --git a/tests/checks/tmux-complete.fish b/tests/checks/tmux-complete.fish index 8b8076109..45088def6 100644 --- a/tests/checks/tmux-complete.fish +++ b/tests/checks/tmux-complete.fish @@ -1,6 +1,8 @@ #RUN: %fish %s #REQUIRES: command -v tmux #REQUIRES: uname -r | grep -qv Microsoft +# disable on github actions because it's flakey +#REQUIRES: test -z "$CI" isolated-tmux-start diff --git a/tests/pexpects/eval-stack-overflow.py b/tests/pexpects/eval-stack-overflow.py index 746da52af..da7fc832e 100644 --- a/tests/pexpects/eval-stack-overflow.py +++ b/tests/pexpects/eval-stack-overflow.py @@ -19,6 +19,7 @@ expect_prompt() sendline("echo cat dog") expect_prompt("cat dog") +sleep(0.5) sendline("eval (string replace dog tiger -- $history[1])") expect_prompt("cat tiger")