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 429A5429E54 for ; Mon, 27 Jun 2011 21:45:32 -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 PB8BGC-KR7BK for ; Mon, 27 Jun 2011 21:45:31 -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 3E1A7429E41 for ; Mon, 27 Jun 2011 21:45:31 -0700 (PDT) Received: by mail-bw0-f53.google.com with SMTP id 12so4889638bwg.26 for ; Mon, 27 Jun 2011 21:45:31 -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 :in-reply-to:references; bh=dzdbz0vE4W1zIE7bSBnXpKCoHB4sZtQk966XvG01opQ=; b=LoUwU/2PaO2muMXGScAU3soP4K51OoS1wj2Nhyq7VFvZFtcN/HGQA4pnsDPtOMhG5g CVqCcLcpH2Ws6JztpiwN7Hd4EeVBiJZHpb2/vC344ipdpAj8cgHhn4RxFaHRY0dqJ1CW ibgXE5ESsWfyX0Sq+IOV+mVeh9d7mwZ0GKAf4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=VTbzclT7FBAXrr3LwAZABeSaLG1WcX6HwAAGLQcc6Qy/CPdxu8HG2UqWmFP9bIHUuO Dpw+y85oN3hkaaqMz1CAmRn0fT0eU4uTxw5IwpnPJ45QsWDBiBaX3O89k+xR7b46X2Rg owIdPA4pGjzsVT/G08C7RCUcfl9wTnPTBC+KQ= Received: by 10.204.140.18 with SMTP id g18mr4937425bku.59.1309236330938; Mon, 27 Jun 2011 21:45:30 -0700 (PDT) Received: from localhost ([91.144.186.21]) by mx.google.com with ESMTPS id o3sm1547249bka.0.2011.06.27.21.45.29 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 27 Jun 2011 21:45:30 -0700 (PDT) From: Dmitry Kurochkin To: notmuch@notmuchmail.org Subject: [PATCH 02/10] test: do not set `message-signature' in test_emacs Date: Tue, 28 Jun 2011 08:45:03 +0400 Message-Id: <1309236311-2162-2-git-send-email-dmitry.kurochkin@gmail.com> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1309236311-2162-1-git-send-email-dmitry.kurochkin@gmail.com> References: <1309236311-2162-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: Tue, 28 Jun 2011 04:45:32 -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