mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +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.
29 lines
1.2 KiB
Text
29 lines
1.2 KiB
Text
From: "Carl Worth" <cworth@cworth.org>
|
|
To: notmuch@notmuchmail.org
|
|
Date: Wed, 18 Nov 2009 02:43:50 -0800
|
|
Subject: [notmuch] [PATCH] Older versions of install do not support -C.
|
|
In-Reply-To: <1258496327-12086-1-git-send-email-jan@ryngle.com>
|
|
References: <1258496327-12086-1-git-send-email-jan@ryngle.com>
|
|
Message-ID: <87hbssqfix.fsf@yoom.home.cworth.org>
|
|
|
|
On Tue, 17 Nov 2009 23:18:47 +0100, Jan Janak <jan at ryngle.com> wrote:
|
|
> Do not use -C cmdline option of install, older versions, commonly found in
|
|
> distributions like Debian, do not seem to support it. Running make install
|
|
> on such systems (tested on Debian Lenny) fails.
|
|
>
|
|
> Signed-off-by: Jan Janak <jan at ryngle.com>
|
|
|
|
Thanks, Jan. This is pushed now.
|
|
|
|
And did I say welcome to notmuch yet? (It's easy to lose track with all
|
|
the newcomers---which I'm not complaining about---especially since so
|
|
many are sharing code.)
|
|
|
|
-Carl
|
|
|
|
PS. I actually really like the behavior of -C (especially when
|
|
installing a low-level library to avoid big waterfalls of needless
|
|
recompiles). But since we're *not* actually installing a library (yet)
|
|
I'm happy with this patch rather than writing code in configure to check
|
|
if "install -C" works or not.
|
|
|