[PATCH 4/4] Update NEWS for user.other_name
[notmuch-archives.git] / 93 / 8d8cced8a9f90cfb128782b4173a2020635fb9
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 E37D9431FC9\r
6         for <notmuch@notmuchmail.org>; Tue, 14 Aug 2012 02:02:39 -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 0nL9ypz9drQ4 for <notmuch@notmuchmail.org>;\r
16         Tue, 14 Aug 2012 02:02:39 -0700 (PDT)\r
17 Received: from tesseract.cs.unb.ca (tesseract.cs.unb.ca [131.202.240.238])\r
18         (using TLSv1 with cipher AES256-SHA (256/256 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id 3C2D9431FB6\r
21         for <notmuch@notmuchmail.org>; Tue, 14 Aug 2012 02:02:39 -0700 (PDT)\r
22 Received: from remotemail by tesseract.cs.unb.ca with local (Exim 4.72)\r
23         (envelope-from <bremner@tesseract.cs.unb.ca>) id 1T1D1K-00061d-NK\r
24         for notmuch@notmuchmail.org; Tue, 14 Aug 2012 06:02:38 -0300\r
25 Received: (nullmailer pid 5238 invoked by uid 1000);\r
26         Mon, 13 Aug 2012 20:14:00 -0000\r
27 From: David Bremner <bremner@debian.org>\r
28 To: notmuch@notmuchmail.org\r
29 Subject: Random message corpus, v2\r
30 Date: Mon, 13 Aug 2012 22:13:45 +0200\r
31 Message-Id: <1344888831-4301-1-git-send-email-bremner@debian.org>\r
32 X-Mailer: git-send-email 1.7.10.4\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: Tue, 14 Aug 2012 09:02:40 -0000\r
46 \r
47 This obsoletes the series\r
48 \r
49      id:"1344190393-22497-1-git-send-email-david@tethera.net"\r
50 \r
51 [Patch v2 1/6] hex-escape: (en|de)code strings to/from restricted\r
52 [Patch v2 2/6] test/hex-xcode: new test binary\r
53 [Patch v2 3/6] test/hex-escaping: new test for hex escaping routines\r
54 \r
55 In order to avoid the problem of trashing people's terminals, the new\r
56 version hex escapes the files being compared.  This brings in another\r
57 three patches from the previous dump-restore series, but we need them\r
58 anyway for the eventual new dump-restore format.\r
59 \r
60 [Patch v2 4/6] test: add database routines for testing.\r
61 \r
62 No changes since v1.\r
63 \r
64 [Patch v2 5/6] test: add generator for random "stub" messages\r
65 \r
66 - Simplified to have only two character classes.\r
67 - Fix bug with "stop - start" as opposed to "start - stop"\r
68 \r
69 See id:"87393x3jz1.fsf@qmul.ac.uk"\r
70 \r
71 [Patch v2 6/6] test: add broken roundtrip test\r
72 \r
73 - use hexdump to encode non-ascii octets.\r
74 \r
75   See id:"87zk6524f0.fsf@qmul.ac.uk"\r
76 \r
77 - Both Mark and Jamie remarked on the use of 'test_expect_success'\r
78   Basically there are two styles of running tests, "git style" as\r
79   written here, or "notmuch style" using "test_begin_subtest".  The\r
80   git style seems to be more robust against failure of intermediate\r
81   commands: for example, if the hex-xcode binary is missing, the\r
82   corresponding notmuch style test shows (wrongly) as fixed (see\r
83   also id:"1317317811-29540-1-git-send-email-thomas@schwinge.name" for\r
84   Thomas converting some notmuch style tests to git style).\r
85 \r
86   Obviously the notmuch style is more pleasant to edit.  Maybe there\r
87   is a way to make them more robust; something like "set -e".\r
88 \r
89   Note that some failures still do not abort the test, because of a\r
90   missing "set -o pipefile". Setting this locally in a test seems\r
91   definitely wrong, but maybe it should be set globally in test-lib.sh\r