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 84E26431FB6 for ; Fri, 27 Jan 2012 20:48:50 -0800 (PST) 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 CqS--KoGMNWZ for ; Fri, 27 Jan 2012 20:48:50 -0800 (PST) Received: from mail-bk0-f53.google.com (mail-bk0-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 C307C431FAE for ; Fri, 27 Jan 2012 20:48:49 -0800 (PST) Received: by bkbzt19 with SMTP id zt19so2258039bkb.26 for ; Fri, 27 Jan 2012 20:48:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:subject:date:message-id:x-mailer; bh=oNlwOfMLisuua43w6HxgexA7Cn+bf+enz8Ieyr+KghI=; b=xGa+CQWzKN0hnxLjmZHGOweX8Zer/9j5XzHO6wUJlzABWdgUYfIxe0E9rRXbXR8Y9Z eVXyo/XtDoKb3fA2ip667HOs7lzZmwQ2aQ9hF5H/NVsgSIvakZsbMlGWoNcdAeaC6WT4 Ji4JWk1HxoPIw6nzkFQ2olKAR+nymySG10Z7E= Received: by 10.205.127.17 with SMTP id gy17mr4318937bkc.110.1327726128536; Fri, 27 Jan 2012 20:48:48 -0800 (PST) Received: from localhost ([91.144.186.21]) by mx.google.com with ESMTPS id z15sm17833821bkd.7.2012.01.27.20.48.47 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 27 Jan 2012 20:48:48 -0800 (PST) From: Dmitry Kurochkin To: notmuch@notmuchmail.org Subject: [PATCH] test: remove ".sh" extension from the recently added Emacs tests Date: Sat, 28 Jan 2012 08:47:39 +0400 Message-Id: <1327726059-17668-1-git-send-email-dmitry.kurochkin@gmail.com> X-Mailer: git-send-email 1.7.8.3 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: Sat, 28 Jan 2012 04:48:50 -0000 All test files, except for the recently added Emacs tests, do not have ".sh" extension. So remove it from the new test files for consistency. --- test/emacs-address-cleaning | 18 ++++++++++++++++++ test/emacs-address-cleaning.sh | 18 ------------------ test/emacs-test-functions | 9 +++++++++ test/emacs-test-functions.sh | 9 --------- test/notmuch-test | 4 ++-- 5 files changed, 29 insertions(+), 29 deletions(-) create mode 100755 test/emacs-address-cleaning delete mode 100755 test/emacs-address-cleaning.sh create mode 100755 test/emacs-test-functions delete mode 100755 test/emacs-test-functions.sh diff --git a/test/emacs-address-cleaning b/test/emacs-address-cleaning new file mode 100755 index 0000000..51018fe --- /dev/null +++ b/test/emacs-address-cleaning @@ -0,0 +1,18 @@ +#!/usr/bin/env bash + +test_description="emacs address cleaning" +. test-lib.sh + +test_begin_subtest "notmuch-test-address-clean part 1" +test_emacs_expect_t \ + '(load "emacs-address-cleaning.el") (notmuch-test-address-cleaning-1)' + +test_begin_subtest "notmuch-test-address-clean part 2" +test_emacs_expect_t \ + '(load "emacs-address-cleaning.el") (notmuch-test-address-cleaning-2)' + +test_begin_subtest "notmuch-test-address-clean part 3" +test_emacs_expect_t \ + '(load "emacs-address-cleaning.el") (notmuch-test-address-cleaning-3)' + +test_done diff --git a/test/emacs-address-cleaning.sh b/test/emacs-address-cleaning.sh deleted file mode 100755 index 51018fe..0000000 --- a/test/emacs-address-cleaning.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env bash - -test_description="emacs address cleaning" -. test-lib.sh - -test_begin_subtest "notmuch-test-address-clean part 1" -test_emacs_expect_t \ - '(load "emacs-address-cleaning.el") (notmuch-test-address-cleaning-1)' - -test_begin_subtest "notmuch-test-address-clean part 2" -test_emacs_expect_t \ - '(load "emacs-address-cleaning.el") (notmuch-test-address-cleaning-2)' - -test_begin_subtest "notmuch-test-address-clean part 3" -test_emacs_expect_t \ - '(load "emacs-address-cleaning.el") (notmuch-test-address-cleaning-3)' - -test_done diff --git a/test/emacs-test-functions b/test/emacs-test-functions new file mode 100755 index 0000000..0e1f9fc --- /dev/null +++ b/test/emacs-test-functions @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +test_description="emacs test function sanity" +. test-lib.sh + +test_begin_subtest "emacs test function sanity" +test_emacs_expect_t 't' + +test_done diff --git a/test/emacs-test-functions.sh b/test/emacs-test-functions.sh deleted file mode 100755 index 0e1f9fc..0000000 --- a/test/emacs-test-functions.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env bash - -test_description="emacs test function sanity" -. test-lib.sh - -test_begin_subtest "emacs test function sanity" -test_emacs_expect_t 't' - -test_done diff --git a/test/notmuch-test b/test/notmuch-test index 3f1740c..ced6b47 100755 --- a/test/notmuch-test +++ b/test/notmuch-test @@ -52,8 +52,8 @@ TESTS=" python hooks argument-parsing - emacs-test-functions.sh - emacs-address-cleaning.sh + emacs-test-functions + emacs-address-cleaning " TESTS=${NOTMUCH_TESTS:=$TESTS} -- 1.7.8.3