From 05f7c0280e31d25e0b9b5c5cca349eb93e24f04f Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Mon, 18 Jul 2011 20:30:28 -0500 Subject: Fix test suite when GPGME is disabled As noted by Allan, we failed pretty hard if gpgme was compiled out. With these changes, only sign001.py fails. This can/will be fixed later once we beef up the test suite with more signing tests anyway. Signed-off-by: Dan McGee --- lib/libalpm/be_sync.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'lib/libalpm/be_sync.c') diff --git a/lib/libalpm/be_sync.c b/lib/libalpm/be_sync.c index d7e14ba3..daed01f9 100644 --- a/lib/libalpm/be_sync.c +++ b/lib/libalpm/be_sync.c @@ -600,6 +600,14 @@ alpm_db_t *_alpm_db_register_sync(alpm_handle_t *handle, const char *treename, _alpm_log(handle, ALPM_LOG_DEBUG, "registering sync database '%s'\n", treename); + _alpm_log(handle, ALPM_LOG_DEBUG, "spot 3\n"); +#ifndef HAVE_LIBGPGME + _alpm_log(handle, ALPM_LOG_DEBUG, "spot 2\n"); + if(level != 0 && level != ALPM_SIG_USE_DEFAULT) { + RET_ERR(handle, ALPM_ERR_WRONG_ARGS, NULL); + } +#endif + db = _alpm_db_new(treename, 0); if(db == NULL) { RET_ERR(handle, ALPM_ERR_DB_CREATE, NULL); -- cgit v1.2.3-24-g4f1b