Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / 37 / 630368f2989a8bcfb395745b0a92910457946a
1 Return-Path: <tomi.ollila@iki.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 23304431FBD\r
6         for <notmuch@notmuchmail.org>; Mon, 24 Mar 2014 13:46:49 -0700 (PDT)\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 VI9SRTg7Nlp4 for <notmuch@notmuchmail.org>;\r
16         Mon, 24 Mar 2014 13:46:41 -0700 (PDT)\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 78E74431FB6\r
19         for <notmuch@notmuchmail.org>; Mon, 24 Mar 2014 13:46:41 -0700 (PDT)\r
20 Received: from guru.guru-group.fi (localhost [IPv6:::1])\r
21         by guru.guru-group.fi (Postfix) with ESMTP id 026F81000E5;\r
22         Mon, 24 Mar 2014 22:46:33 +0200 (EET)\r
23 From: Tomi Ollila <tomi.ollila@iki.fi>\r
24 To: Jani Nikula <jani@nikula.org>, notmuch@notmuchmail.org\r
25 Subject: Re: [PATCH v2] test: conditionally test compact depending on\r
26         configured support\r
27 In-Reply-To: <1394645164-23561-1-git-send-email-jani@nikula.org>\r
28 References: <m2mwgwwmfl.fsf@guru.guru-group.fi>\r
29         <1394645164-23561-1-git-send-email-jani@nikula.org>\r
30 User-Agent: Notmuch/0.17+156~g1203750 (http://notmuchmail.org) Emacs/24.3.1\r
31         (x86_64-unknown-linux-gnu)\r
32 X-Face: HhBM'cA~<r"^Xv\KRN0P{vn'Y"Kd;zg_y3S[4)KSN~s?O\"QPoL\r
33         $[Xv_BD:i/F$WiEWax}R(MPS`^UaptOGD`*/=@\1lKoVa9tnrg0TW?"r7aRtgk[F\r
34         !)g;OY^,BjTbr)Np:%c_o'jj,Z\r
35 Date: Mon, 24 Mar 2014 22:46:32 +0200\r
36 Message-ID: <m2lhvzs4t3.fsf@guru.guru-group.fi>\r
37 MIME-Version: 1.0\r
38 Content-Type: text/plain\r
39 X-BeenThere: notmuch@notmuchmail.org\r
40 X-Mailman-Version: 2.1.13\r
41 Precedence: list\r
42 List-Id: "Use and development of the notmuch mail system."\r
43         <notmuch.notmuchmail.org>\r
44 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
45         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
46 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
47 List-Post: <mailto:notmuch@notmuchmail.org>\r
48 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
49 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
50         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
51 X-List-Received-Date: Mon, 24 Mar 2014 20:46:49 -0000\r
52 \r
53 On Wed, Mar 12 2014, Jani Nikula <jani@nikula.org> wrote:\r
54 \r
55 > I still have one machine with old enough Xapian to not have compaction\r
56 > support. Make the tests check for unsupported compact operation when\r
57 > compact is not available.\r
58 > ---\r
59 \r
60 LGTM.\r
61 \r
62 Tomi\r
63 \r
64 \r
65 >  test/Makefile.local  |  8 ++++++++\r
66 >  test/T020-compact.sh | 11 +++++++++++\r
67 >  2 files changed, 19 insertions(+)\r
68 >\r
69 > diff --git a/test/Makefile.local b/test/Makefile.local\r
70 > index 36b1c1b71de0..781420164105 100644\r
71 > --- a/test/Makefile.local\r
72 > +++ b/test/Makefile.local\r
73 > @@ -35,9 +35,17 @@ $(dir)/symbol-test: $(dir)/symbol-test.o lib/$(LINKER_NAME)\r
74 >  $(dir)/parse-time: $(dir)/parse-time.o parse-time-string/parse-time-string.o\r
75 >       $(call quiet,CC) $^ -o $@\r
76 >  \r
77 > +$(dir)/have-compact: Makefile.config\r
78 > +ifeq ($(HAVE_XAPIAN_COMPACT),1)\r
79 > +     ln -sf /bin/true $@\r
80 > +else\r
81 > +     ln -sf /bin/false $@\r
82 > +endif\r
83 > +\r
84 >  .PHONY: test check\r
85 >  \r
86 >  TEST_BINARIES=$(dir)/arg-test \\r
87 > +           $(dir)/have-compact \\r
88 >             $(dir)/hex-xcode \\r
89 >             $(dir)/random-corpus \\r
90 >             $(dir)/parse-time \\r
91 > diff --git a/test/T020-compact.sh b/test/T020-compact.sh\r
92 > index ac174cec7111..77bb9632cb11 100755\r
93 > --- a/test/T020-compact.sh\r
94 > +++ b/test/T020-compact.sh\r
95 > @@ -10,6 +10,17 @@ notmuch tag +tag1 \*\r
96 >  notmuch tag +tag2 subject:Two\r
97 >  notmuch tag -tag1 +tag3 subject:Three\r
98 >  \r
99 > +if ! ${TEST_DIRECTORY}/have-compact; then\r
100 > +    test_begin_subtest "Compact unsupported: error message"\r
101 > +    output=$(notmuch compact --quiet 2>&1)\r
102 > +    test_expect_equal "$output" "notmuch was compiled against a xapian version lacking compaction support.\r
103 > +Compaction failed: Unsupported operation"\r
104 > +\r
105 > +    test_expect_code 1 "Compact unsupported: status code" "notmuch compact"\r
106 > +\r
107 > +    test_done\r
108 > +fi\r
109 > +\r
110 >  test_expect_success "Running compact" "notmuch compact --backup=${TEST_DIRECTORY}/xapian.old"\r
111 >  \r
112 >  test_begin_subtest "Compact preserves database"\r
113 > -- \r
114 > 1.9.0\r
115 >\r
116 > _______________________________________________\r
117 > notmuch mailing list\r
118 > notmuch@notmuchmail.org\r
119 > http://notmuchmail.org/mailman/listinfo/notmuch\r