From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id AE7CE421186 for ; Wed, 29 Jun 2011 14:26:15 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.799 X-Spam-Level: X-Spam-Status: No, score=-0.799 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id O+cnj8Qu9Lgz for ; Wed, 29 Jun 2011 14:26:15 -0700 (PDT) Received: from mail-bw0-f53.google.com (mail-bw0-f53.google.com [209.85.214.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 15119429E5F for ; Wed, 29 Jun 2011 14:26:14 -0700 (PDT) Received: by bwg12 with SMTP id 12so1533595bwg.26 for ; Wed, 29 Jun 2011 14:26:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=8tBbvMHPoCQQ8DlsptqfIM7jpptT3ngr1YuZ6Sv862k=; b=l6RLU+Gch37PQoHYI6UvwtMb+3TYJeM3H5nW9wTLf3GhZSdrzj9UyGS/U09xSmehIO AnynEqK5ksaIdR07CvIznysnKwgv1XTONE+vdZvP2uDybbdaHIuqTNKEqu0cCfrjf49I 3YoVJTVnuxfzMUfuXMzWJOiULahmw6rHce9D8= Received: by 10.204.136.217 with SMTP id s25mr1220787bkt.13.1309382773708; Wed, 29 Jun 2011 14:26:13 -0700 (PDT) Received: from localhost ([91.144.186.21]) by mx.google.com with ESMTPS id g13sm1491929bkd.10.2011.06.29.14.26.12 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 29 Jun 2011 14:26:13 -0700 (PDT) From: Dmitry Kurochkin To: notmuch@notmuchmail.org Subject: [PATCH] test: avoid using screen(1) configuration files Date: Thu, 30 Jun 2011 01:26:04 +0400 Message-Id: <1309382764-15714-1-git-send-email-dmitry.kurochkin@gmail.com> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1309376558-26284-1-git-send-email-dmitry.kurochkin@gmail.com> References: <1309376558-26284-1-git-send-email-dmitry.kurochkin@gmail.com> X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Jun 2011 21:26:15 -0000 Set SCREENRC and SYSSCREENRC environment variables to "/dev/null" as suggested by Jim Paris to avoid potential problems with screen(1) configuration files. --- 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 8d7c98d..7cd4832 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 -- 1.7.5.4