From faa19558b2fac6d3134ba1de185034a1a8af2ae6 Mon Sep 17 00:00:00 2001 From: davidhcefx Date: Wed, 3 May 2023 11:40:36 +0800 Subject: [PATCH] [test] Adapt new error message and new behavior - New error message "Standard input is not a terminal" should be ignored. - nano changed its behavior to produce error messages AFTER program exited. --- .github/workflows/test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 59576c5..5163259 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,6 +35,9 @@ jobs: run: | mkdir -p ~/.nano/ cp -al *.nanorc ~/.nano/ - TERM=xterm timeout 1s nano --rcfile ./nanorc >/dev/null 2>error.txt || true - grep -v -e "Received SIGHUP or SIGTERM" -e "Too many errors from stdin" error.txt && false + echo "" | TERM=xterm timeout 1s nano --rcfile ./nanorc >/dev/null 2>error.txt || true + if grep -v -e "Received SIGHUP or SIGTERM" -e "Too many errors from stdin" \ + -e "Standard input is not a terminal" error.txt; then + exit 1 + fi echo "All seems good!"