summaryrefslogtreecommitdiff
path: root/test cases/frameworks/27 gpgme
AgeCommit message (Collapse)Author
2024-03-17tests: rename skip_on_jobname to expect_skip_on_jobname and skip_on_os to ↵Christoph Reiter
expect_skip_on_os The test.json format currently has three keys related to skipping tests: * `skip_on_jobname` * `skip_on_os` * `skip_on_env` While `skip_on_env` marks the test itself as skipped, i.e. they don't get run when the conditions are met, the other two skip options are just marking the test as "expected to be skipped" if the conditions apply, i.e. they want to see `MESON_SKIP_TEST` in the output and things will fail if that doesn't happen. They don't actually skip the tests as the names imply. To make this clearer rename the keys: * `skip_on_jobname` -> `expect_skip_on_jobname` * `skip_on_os` -> `expect_skip_on_os` `skip_on_env` stays the same, since that actually skips. The docs were also confused about this, so adjust that too.
2023-07-18tests: mark gpgme test skippable on Ubuntu rollingEli Schwartz
It has been rebuilt to no longer provide the deprecated gpgme-config tool.
2023-02-08CI: skip gpgme-config test on ArchEli Schwartz
gpgme has decided that config-tool is bad, which makes sense. They've also decided that they will only install theirs, if gpg-error also installs one, which is a bit... confusing. Anyway, it's impossible to know whether it should or should not exist, so just accept that this test is ready to be skipped on distros that currently no longer have this ancient config-tool script. Victory is within reach!
2021-07-13Add expected skip annotations for non-linux CI runs to framework testsJon Turney
2019-04-15gpgme dependency: verify that pkg-config works on newer gpgmeEli Schwartz
If the detected gpgme version is recent enough to match the version in which upstream pkg-config files were added, assert that the default found dependency is of the pkgconfig type.
2019-04-06Add gpgme-config supportJan Tojnar
GPGME does not support pkg-config so we need config-tool support if we do not want projects like Almanah and Seahorse to parse the values manually.