database error
[notmuch-archives.git] / 7d / a1983f52b457169018ffc42b52c182383747b8
1 Return-Path: <too@guru-group.fi>\r
2 X-Original-To: notmuch@notmuchmail.org\r
3 Delivered-To: notmuch@notmuchmail.org\r
4 Received: from localhost (localhost [127.0.0.1])\r
5         by olra.theworths.org (Postfix) with ESMTP id 7C8FA431FBD\r
6         for <notmuch@notmuchmail.org>; Tue,  4 Mar 2014 12:38:38 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: 0\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
12         autolearn=disabled\r
13 Received: from olra.theworths.org ([127.0.0.1])\r
14         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
15         with ESMTP id vt544VqbyNdY for <notmuch@notmuchmail.org>;\r
16         Tue,  4 Mar 2014 12:38:28 -0800 (PST)\r
17 Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
18         by olra.theworths.org (Postfix) with ESMTP id 8B525431FBF\r
19         for <notmuch@notmuchmail.org>; Tue,  4 Mar 2014 12:38:28 -0800 (PST)\r
20 Received: by guru.guru-group.fi (Postfix, from userid 501)\r
21         id ABE3510024B; Tue,  4 Mar 2014 22:38:22 +0200 (EET)\r
22 From: Tomi Ollila <tomi.ollila@iki.fi>\r
23 To: notmuch@notmuchmail.org\r
24 Subject: [PATCH v2] test: NOTMUCH_SKIP_TESTS accepts test names with or\r
25         without Tddd- prefix\r
26 Date: Tue,  4 Mar 2014 22:38:21 +0200\r
27 Message-Id: <1393965501-16626-1-git-send-email-tomi.ollila@iki.fi>\r
28 X-Mailer: git-send-email 1.8.0\r
29 In-Reply-To: <1393957666-9684-1-git-send-email-tomi.ollila@iki.fi>\r
30 References: <1393957666-9684-1-git-send-email-tomi.ollila@iki.fi>\r
31 Cc: tomi.ollila@iki.fi\r
32 X-BeenThere: notmuch@notmuchmail.org\r
33 X-Mailman-Version: 2.1.13\r
34 Precedence: list\r
35 List-Id: "Use and development of the notmuch mail system."\r
36         <notmuch.notmuchmail.org>\r
37 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
38         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
39 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
40 List-Post: <mailto:notmuch@notmuchmail.org>\r
41 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
42 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
43         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
44 X-List-Received-Date: Tue, 04 Mar 2014 20:38:38 -0000\r
45 \r
46 The test names assigned to NOTMUCH_SKIP_TESTS variable can now be given\r
47 with or without the Tddd- prefix for tester convenience:\r
48 \r
49 The test name without Tddd -prefix stays constant even when test filenames\r
50 are renumbered.\r
51 \r
52 The test name with Tddd -prefix is printed out when tests run.\r
53 ---\r
54 \r
55 this obsoletes id:1393957666-9684-1-git-send-email-tomi.ollila@iki.fi\r
56 \r
57  test/test-lib.sh | 12 ++++++++++++\r
58  1 file changed, 12 insertions(+)\r
59 \r
60 diff --git a/test/test-lib.sh b/test/test-lib.sh\r
61 index 78af170..306ad01 100644\r
62 --- a/test/test-lib.sh\r
63 +++ b/test/test-lib.sh\r
64 @@ -825,6 +825,12 @@ test_skip () {\r
65                 case $this_test.$test_count in\r
66                 $skp)\r
67                         to_skip=t\r
68 +                       break\r
69 +               esac\r
70 +               case $this_test_bare.$test_count in\r
71 +               $skp)\r
72 +                       to_skip=t\r
73 +                       break\r
74                 esac\r
75         done\r
76         if test -z "$to_skip" && test -n "$prereq" &&\r
77 @@ -1207,6 +1213,12 @@ do\r
78                 case "$this_test" in\r
79                 $skp)\r
80                         to_skip=t\r
81 +                       break\r
82 +               esac\r
83 +               case "$this_test_bare" in\r
84 +               $skp)\r
85 +                       to_skip=t\r
86 +                       break\r
87                 esac\r
88         done\r
89         case "$to_skip" in\r
90 -- \r
91 1.8.5.3\r
92 \r