unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* [PATCH 1/2] test-lib.sh: rename $DTACH_TERM to $SMART_TERM
@ 2016-10-20  8:19 Tomi Ollila
  2016-10-20  8:19 ` [PATCH 2/2] test: use vt100 as "smart" terminal for known dumb/unknown terminals Tomi Ollila
  2016-10-22 15:51 ` [PATCH 1/2] test-lib.sh: rename $DTACH_TERM to $SMART_TERM David Bremner
  0 siblings, 2 replies; 3+ messages in thread
From: Tomi Ollila @ 2016-10-20  8:19 UTC (permalink / raw)
  To: notmuch; +Cc: tomi.ollila

---
 test/test-lib.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/test-lib.sh b/test/test-lib.sh
index bda8a80..77879c2 100644
--- a/test/test-lib.sh
+++ b/test/test-lib.sh
@@ -57,7 +57,7 @@ ORIGINAL_TERM=$TERM
 
 # dtach(1) provides more capable terminal environment to anything
 # that requires more than dumb terminal...
-[ x"${TERM:-dumb}" = xdumb ] && DTACH_TERM=vt100 || DTACH_TERM=$TERM
+[ x"${TERM:-dumb}" = xdumb ] && SMART_TERM=vt100 || SMART_TERM=$TERM
 
 # For repeatability, reset the environment to known value.
 LANG=C
@@ -1171,7 +1171,7 @@ test_emacs () {
 		# user's TERM (or 'vt100' in case user's TERM is unset, empty
 		# or 'dumb') is given to dtach which assumes a minimally
 		# VT100-compatible terminal -- and emacs inherits that
-		TERM=$DTACH_TERM dtach -n "$TEST_TMPDIR/emacs-dtach-socket.$$" \
+		TERM=$SMART_TERM dtach -n "$TEST_TMPDIR/emacs-dtach-socket.$$" \
 			sh -c "stty rows 24 cols 80; exec '$TMP_DIRECTORY/run_emacs' \
 				--no-window-system \
 				$load_emacs_tests \
-- 
2.10.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH 2/2] test: use vt100 as "smart" terminal for known dumb/unknown terminals
  2016-10-20  8:19 [PATCH 1/2] test-lib.sh: rename $DTACH_TERM to $SMART_TERM Tomi Ollila
@ 2016-10-20  8:19 ` Tomi Ollila
  2016-10-22 15:51 ` [PATCH 1/2] test-lib.sh: rename $DTACH_TERM to $SMART_TERM David Bremner
  1 sibling, 0 replies; 3+ messages in thread
From: Tomi Ollila @ 2016-10-20  8:19 UTC (permalink / raw)
  To: notmuch; +Cc: tomi.ollila

Otherwise use whatever user environment has set for TERM so
that there is more chance to test on users' actual environments.
---
 test/test-lib.sh | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/test/test-lib.sh b/test/test-lib.sh
index 77879c2..e7b8339 100644
--- a/test/test-lib.sh
+++ b/test/test-lib.sh
@@ -55,9 +55,15 @@ export PS4='+(${BASH_SOURCE}:${LINENO}): ${FUNCNAME[0]:+${FUNCNAME[0]}(): }'
 # Keep the original TERM for say_color and test_emacs
 ORIGINAL_TERM=$TERM
 
-# dtach(1) provides more capable terminal environment to anything
-# that requires more than dumb terminal...
-[ x"${TERM:-dumb}" = xdumb ] && SMART_TERM=vt100 || SMART_TERM=$TERM
+# Set SMART_TERM to vt100 for known dumb/unknown terminal.
+# Otherwise use whatever TERM is currently used so that
+# users' actual TERM environments are being used in tests.
+case ${TERM-} in
+	'' | dumb | unknown )
+		SMART_TERM=vt100 ;;
+	*)
+		SMART_TERM=$TERM ;;
+esac
 
 # For repeatability, reset the environment to known value.
 LANG=C
@@ -1168,8 +1174,8 @@ test_emacs () {
 		fi
 		server_name="notmuch-test-suite-$$"
 		# start a detached session with an emacs server
-		# user's TERM (or 'vt100' in case user's TERM is unset, empty
-		# or 'dumb') is given to dtach which assumes a minimally
+		# user's TERM (or 'vt100' in case user's TERM is known dumb
+		# or unknown) is given to dtach which assumes a minimally
 		# VT100-compatible terminal -- and emacs inherits that
 		TERM=$SMART_TERM dtach -n "$TEST_TMPDIR/emacs-dtach-socket.$$" \
 			sh -c "stty rows 24 cols 80; exec '$TMP_DIRECTORY/run_emacs' \
-- 
2.10.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/2] test-lib.sh: rename $DTACH_TERM to $SMART_TERM
  2016-10-20  8:19 [PATCH 1/2] test-lib.sh: rename $DTACH_TERM to $SMART_TERM Tomi Ollila
  2016-10-20  8:19 ` [PATCH 2/2] test: use vt100 as "smart" terminal for known dumb/unknown terminals Tomi Ollila
@ 2016-10-22 15:51 ` David Bremner
  1 sibling, 0 replies; 3+ messages in thread
From: David Bremner @ 2016-10-22 15:51 UTC (permalink / raw)
  To: Tomi Ollila, notmuch; +Cc: tomi.ollila


Series pushed to release and master,

d

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-10-22 15:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-20  8:19 [PATCH 1/2] test-lib.sh: rename $DTACH_TERM to $SMART_TERM Tomi Ollila
2016-10-20  8:19 ` [PATCH 2/2] test: use vt100 as "smart" terminal for known dumb/unknown terminals Tomi Ollila
2016-10-22 15:51 ` [PATCH 1/2] test-lib.sh: rename $DTACH_TERM to $SMART_TERM David Bremner

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).