mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
971cdc72cd
We largely use the corpus under test/corpus for testing. Unfortunately, many of our tests have grown to depend on having exactly this set of messages, making it hard to add new message files for testing specific cases. We do use a lot of add_message from within the tests, but it's not possible to use that for adding broken messages, and adding several messages at once can get unwieldy. Move the basic corpus under tests/corpora/default, and make it possible to add new, independent corpora along its side. This means tons of renames with a few tweaks to add_email_corpus function in test-lib.sh to let tests specify which corpus to use.
32 lines
849 B
Text
32 lines
849 B
Text
From: "Mikhail Gusarov" <dottedmag@dottedmag.net>
|
|
To: notmuch@notmuchmail.org
|
|
Date: Tue, 17 Nov 2009 21:28:38 +0600
|
|
Subject: [notmuch] [PATCH 2/2] Include <stdint.h> to get uint32_t in C++
|
|
file with gcc 4.4
|
|
In-Reply-To: <1258471718-6781-1-git-send-email-dottedmag@dottedmag.net>
|
|
References: <1258471718-6781-1-git-send-email-dottedmag@dottedmag.net>
|
|
Message-ID: <1258471718-6781-2-git-send-email-dottedmag@dottedmag.net>
|
|
|
|
|
|
Signed-off-by: Mikhail Gusarov <dottedmag at dottedmag.net>
|
|
---
|
|
lib/message.cc | 2 ++
|
|
1 files changed, 2 insertions(+), 0 deletions(-)
|
|
|
|
diff --git a/lib/message.cc b/lib/message.cc
|
|
index 72c350f..a4b090b 100644
|
|
--- a/lib/message.cc
|
|
+++ b/lib/message.cc
|
|
@@ -21,6 +21,8 @@
|
|
#include "notmuch-private.h"
|
|
#include "database-private.h"
|
|
|
|
+#include <stdint.h>
|
|
+
|
|
#include <gmime/gmime.h>
|
|
|
|
#include <xapian.h>
|
|
--
|
|
1.6.3.3
|
|
|
|
|