diff options
author | Dmitry Kurochkin <dmitry.kurochkin@gmail.com> | 2011-07-01 08:55:17 +0400 |
---|---|---|
committer | David Bremner <bremner@debian.org> | 2011-11-05 21:54:40 -0300 |
commit | 746a13e6f40431ffa931ef51834ac0eb794ee554 (patch) | |
tree | 90dc01f33d6ecdede574a4cbd71e14d2d8134e66 | |
parent | a1ea4e914f5392a07ede2e6fc5f4350368e267b1 (diff) |
test: avoid using screen(1) configuration files
Set SCREENRC and SYSSCREENRC environment variables to "/dev/null"
as suggested by Jim Paris to avoid potential problems with
screen(1) configuration files.
-rwxr-xr-x | test/test-lib.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test-lib.sh b/test/test-lib.sh index ff5183ff..c81c709b 100755 --- a/test/test-lib.sh +++ b/test/test-lib.sh @@ -50,6 +50,8 @@ TZ=UTC TERM=dumb export LANG LC_ALL PAGER TERM TZ GIT_TEST_CMP=${GIT_TEST_CMP:-diff -u} +export SCREENRC=/dev/null +export SYSSCREENRC=/dev/null # Protect ourselves from common misconfiguration to export # CDPATH into the environment |