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 28425431FBD for ; Thu, 18 Oct 2012 03:19:33 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0 X-Spam-Level: X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none] 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 ZulQQYnGnv-d for ; Thu, 18 Oct 2012 03:19:29 -0700 (PDT) Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34]) by olra.theworths.org (Postfix) with ESMTP id AA438431FB6 for ; Thu, 18 Oct 2012 03:19:29 -0700 (PDT) Received: from guru.guru-group.fi (localhost [IPv6:::1]) by guru.guru-group.fi (Postfix) with ESMTP id BD0201000E5; Thu, 18 Oct 2012 13:19:32 +0300 (EEST) From: Tomi Ollila To: Ethan Glasser-Camp , notmuch@notmuchmail.org Subject: Re: [PATCH] test: Move tests from emacs to emacs-show In-Reply-To: <1350526612-28756-1-git-send-email-ethan@betacantrips.com> References: <1350518399-31087-1-git-send-email-ethan@betacantrips.com> <1350526612-28756-1-git-send-email-ethan@betacantrips.com> User-Agent: Notmuch/0.14+51~g62cd13b (http://notmuchmail.org) Emacs/24.2.1 (x86_64-unknown-linux-gnu) X-Face: HhBM'cA~ MIME-Version: 1.0 Content-Type: text/plain Cc: Ethan Glasser-Camp 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: Thu, 18 Oct 2012 10:19:33 -0000 On Thu, Oct 18 2012, Ethan Glasser-Camp wrote: > This requires changing the contents of the crypto tests, as one thread > that was marked read by the earlier tests in test/emacs is no longer > marked read. > > This moves tests for: > > - 09d19ac "test: emacs: toggle eliding of non-matching messages in > `notmuch-show'", which should have actually read: "test: emacs: > toggle processing of cryptographic MIME parts in `notmuch-show'". > See commit 19ec74c5. > > - 5ea1dbe "test: emacs: toggle eliding of non-matching messages in > `notmuch-show'" > > - 345faab "test: emacs: toggle thread content indentation in > `notmuch-show'" > > Signed-off-by: Ethan Glasser-Camp > --- > I screwed up with git commit --amend or something on the last patch, > so David Bremner suggested that I take advantage of the situation to > write this patch, which does something useful as a side effect. +1 Tomi > > test/emacs | 67 ----------------- > test/emacs-show | 71 ++++++++++++++++++ > .../notmuch-show-elide-non-matching-messages-off | 79 ++++++++++++++++++++ > .../notmuch-show-elide-non-matching-messages-on | 75 +++++++++++++++++++ > .../notmuch-show-indent-thread-content-off | 79 ++++++++++++++++++++ > .../notmuch-show-process-crypto-mime-parts-off | 31 ++++++++ > .../notmuch-show-process-crypto-mime-parts-on | 32 ++++++++ > .../notmuch-show-elide-non-matching-messages-off | 79 -------------------- > .../notmuch-show-elide-non-matching-messages-on | 75 ------------------- > .../notmuch-show-indent-thread-content-off | 79 -------------------- > .../notmuch-show-process-crypto-mime-parts-off | 31 -------- > .../notmuch-show-process-crypto-mime-parts-on | 32 -------- > 12 files changed, 367 insertions(+), 363 deletions(-) > create mode 100644 test/emacs-show.expected-output/notmuch-show-elide-non-matching-messages-off > create mode 100644 test/emacs-show.expected-output/notmuch-show-elide-non-matching-messages-on > create mode 100644 test/emacs-show.expected-output/notmuch-show-indent-thread-content-off > create mode 100644 test/emacs-show.expected-output/notmuch-show-process-crypto-mime-parts-off > create mode 100644 test/emacs-show.expected-output/notmuch-show-process-crypto-mime-parts-on > delete mode 100644 test/emacs.expected-output/notmuch-show-elide-non-matching-messages-off > delete mode 100644 test/emacs.expected-output/notmuch-show-elide-non-matching-messages-on > delete mode 100644 test/emacs.expected-output/notmuch-show-indent-thread-content-off > delete mode 100644 test/emacs.expected-output/notmuch-show-process-crypto-mime-parts-off > delete mode 100644 test/emacs.expected-output/notmuch-show-process-crypto-mime-parts-on >