Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / 7a / de4d92fccdef38729de5c2da44e6869e1228f5
1 Return-Path: <bremner@tesseract.cs.unb.ca>\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 10C42431FBC\r
6         for <notmuch@notmuchmail.org>; Fri,  3 Oct 2014 13:22:35 -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 MVOkzRdg37GB for <notmuch@notmuchmail.org>;\r
16         Fri,  3 Oct 2014 13:22:31 -0700 (PDT)\r
17 Received: from yantan.tethera.net (yantan.tethera.net [199.188.72.155])\r
18         (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id AD91F431FB6\r
21         for <notmuch@notmuchmail.org>; Fri,  3 Oct 2014 13:22:31 -0700 (PDT)\r
22 Received: from remotemail by yantan.tethera.net with local (Exim 4.80)\r
23         (envelope-from <bremner@tesseract.cs.unb.ca>)\r
24         id 1Xa9My-00008r-RQ; Fri, 03 Oct 2014 17:22:28 -0300\r
25 Received: (nullmailer pid 25932 invoked by uid 1000); Fri, 03 Oct 2014\r
26         20:22:17 -0000\r
27 From: David Bremner <david@tethera.net>\r
28 To: notmuch@notmuchmail.org\r
29 Subject: [PATCH 1/2] test: check for debug symbols in notmuch\r
30 Date: Fri,  3 Oct 2014 22:22:09 +0200\r
31 Message-Id: <1412367730-25890-1-git-send-email-david@tethera.net>\r
32 X-Mailer: git-send-email 2.1.0\r
33 X-BeenThere: notmuch@notmuchmail.org\r
34 X-Mailman-Version: 2.1.13\r
35 Precedence: list\r
36 List-Id: "Use and development of the notmuch mail system."\r
37         <notmuch.notmuchmail.org>\r
38 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
39         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
40 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
41 List-Post: <mailto:notmuch@notmuchmail.org>\r
42 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
43 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
44         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
45 X-List-Received-Date: Fri, 03 Oct 2014 20:22:35 -0000\r
46 \r
47 In the future, tests may rely on debug symbols being present in\r
48 notmuch, so we plan to switch the default flags.\r
49 \r
50 The main purpose of this test is to help explain the perhaps\r
51 mysterious failures of other tests which rely on symbols being\r
52 present.\r
53 ---\r
54  test/T000-basic.sh | 5 +++++\r
55  1 file changed, 5 insertions(+)\r
56 \r
57 diff --git a/test/T000-basic.sh b/test/T000-basic.sh\r
58 index ebbb6d2..bf08f3e 100755\r
59 --- a/test/T000-basic.sh\r
60 +++ b/test/T000-basic.sh\r
61 @@ -91,4 +91,9 @@ test_expect_equal \\r
62      "$(dirname ${TEST_DIRECTORY})" \\r
63      "$(echo $PATH|cut -f1 -d: | sed -e 's,/test/valgrind/bin$,,')"\r
64  \r
65 +test_begin_subtest 'notmuch is compiled with debugging symbols'\r
66 +test_subtest_known_broken\r
67 +readelf --sections $(which notmuch) | grep \.debug\r
68 +test_expect_equal 0 $?\r
69 +\r
70  test_done\r
71 -- \r
72 2.1.0\r
73 \r