* tests: fix make distcheck

This commit is contained in:
Dirk-Jan C. Binnema 2010-10-09 15:36:32 +03:00
parent 958cd72e61
commit 3f2023ed92
2 changed files with 2 additions and 1 deletions

View File

@ -23,6 +23,7 @@ INCLUDES=$(XAPIAN_CXXFLAGS) \
-DMU_TESTMAILDIR=\"${abs_srcdir}/testdir/\" \
-DMU_TESTMAILDIR2=\"${abs_srcdir}/testdir2/\" \
-DMU_PROGRAM=\"${abs_top_builddir}/src/mu\" \
-DABS_CURDIR=\"${abs_builddir}\" \
-DABS_SRCDIR=\"${abs_srcdir}\"
# don't use -Werror, as it might break on other compilers

View File

@ -70,7 +70,7 @@ test_mu_util_dir_expand_03 (void)
gchar *got;
got = mu_util_dir_expand (".");
g_assert_cmpstr (got,==,ABS_SRCDIR);
g_assert_cmpstr (got,==,ABS_CURDIR);
g_free (got);
}