Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 58024429E29 for ; Sun, 26 Jun 2011 16:53:17 -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 ht0vaZbDuI73 for ; Sun, 26 Jun 2011 16:53:17 -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 AA889431FD0 for ; Sun, 26 Jun 2011 16:53:16 -0700 (PDT) Received: by bwg12 with SMTP id 12so3882788bwg.26 for ; Sun, 26 Jun 2011 16:53:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:from:to:cc:subject:date:message-id:x-mailer; bh=dzdbz0vE4W1zIE7bSBnXpKCoHB4sZtQk966XvG01opQ=; b=uii0Wowld7Bds70GQEgieiFQJkdT2d1LawxD/OIIs0N0lPp2bgtv13lIWv4X3Iy38L 962xeJCkS+7fzJXRQl+cLHEibEXKGEKYJ25Th/EbVs3KGM759l7Pub5NQwd72pcpijay g6+hHbAZn5rXcX1KyxLKOFk8HVOFb0mHL3uaw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=NxN/9Y9txaJC/O3c9cmVJveTwEPNjO3TN7M/dm0Ukc7H1QXfDmFMTjq+hnRyGHiJhx TDDzgCIoetnGKgobLU3HkpO9UnHNdfAu7JTov/7M0wMAdznbzeAbGYcEhV4ibnD563ow cfxtBQdhjGa6yBx5DsMI+Yg7crkgQYj/MCeb0= Received: by 10.204.14.7 with SMTP id e7mr3928884bka.31.1309132394994; Sun, 26 Jun 2011 16:53:14 -0700 (PDT) Received: from localhost ([91.144.186.21]) by mx.google.com with ESMTPS id af13sm3651531bkc.19.2011.06.26.16.53.12 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 26 Jun 2011 16:53:13 -0700 (PDT) From: Dmitry Kurochkin To: notmuch@notmuchmail.org Subject: [PATCH 1/5] test: do not set `message-signature' in test_emacs Date: Mon, 27 Jun 2011 03:52:55 +0400 Message-Id: <1309132379-24089-1-git-send-email-dmitry.kurochkin@gmail.com> X-Mailer: git-send-email 1.7.5.4 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: Sun, 26 Jun 2011 23:53:17 -0000 It is no longer needed since tests are run in a temporary home directory instead of the user's one. --- test/test-lib.sh | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/test/test-lib.sh b/test/test-lib.sh index cc20f41..3ec388c 100755 --- a/test/test-lib.sh +++ b/test/test-lib.sh @@ -855,8 +855,6 @@ fi # # notmuch-test-wait Function for tests to use to wait for process completion # -# message-signature Avoiding appending user's signature on messages -# # set-frame-width 80 columns (avoids crazy 10-column default of --batch) emacs \$BATCH --no-init-file --no-site-file \ @@ -865,7 +863,6 @@ emacs \$BATCH --no-init-file --no-site-file \ --eval "(defun notmuch-test-wait () (while (get-buffer-process (current-buffer)) (sleep-for 0.1)))" \ - --eval "(setq message-signature nil)" \ --eval "(progn (set-frame-width (window-frame (get-buffer-window)) 80) \$@)" EOF chmod a+x ./run_emacs -- 1.7.5.4