From 4c8b0ac2555d0df483e512b81936d85e314bb8eb Mon Sep 17 00:00:00 2001 From: Denis Pynkin Date: Tue, 30 Jul 2019 02:42:43 +0300 Subject: [PATCH] tests/test-repo-finder-mount: skip some tests if GPG is not supported `ostree_repo_resolve_keyring_for_collection()` function fail the tests if there is no GPG support. Signed-off-by: Denis Pynkin Closes: #1889 Approved by: cgwalters --- tests/test-repo-finder-mount.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test-repo-finder-mount.c b/tests/test-repo-finder-mount.c index 55eb47fb..847f4bec 100644 --- a/tests/test-repo-finder-mount.c +++ b/tests/test-repo-finder-mount.c @@ -557,10 +557,13 @@ int main (int argc, char **argv) g_test_add_func ("/repo-finder-mount/init", test_repo_finder_mount_init); g_test_add ("/repo-finder-mount/no-mounts", Fixture, NULL, setup, test_repo_finder_mount_no_mounts, teardown); +#ifndef OSTREE_DISABLE_GPGME + /*`ostree_repo_resolve_keyring_for_collection()` fail the tests if no GPG support is compiled in. */ g_test_add ("/repo-finder-mount/mixed-mounts", Fixture, NULL, setup, test_repo_finder_mount_mixed_mounts, teardown); g_test_add ("/repo-finder-mount/well-known", Fixture, NULL, setup, test_repo_finder_mount_well_known, teardown); +#endif /* OSTREE_DISABLE_GPGME */ return g_test_run(); }