summaryrefslogtreecommitdiff
path: root/test cases/frameworks/21 libwmf
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-04-11fix various spelling issuesJosh Soref
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
2021-07-13Add expected skip annotations for non-linux CI runs to framework testsJon Turney
2020-05-11ConfigToolDependency: Don't fallback to system tool when cross compilingXavier Claessens
The system tool is always the wrong thing to use and cause hard to debug issues when trying to link system libraries with cross built binaries. The ExternalDependency base class already had a method to deal with this, used by PkgConfigDependency and QtBaseDependency, so it should make things more consistent.
2018-11-07Workaround for Debian bug 912563.Jussi Pakkanen
Libwmf uses Freetype headers but does not have include paths for them by default.
2018-08-26Tests for version constraints on custom lookup dependenciesJon Turney
2017-12-20tests: skip libwmf test if libwmf-config not installedDylan Baker
2017-11-23Use ConfigToolDependency for libwmfDylan Baker
2017-11-23tests: fix libwmf versionDylan Baker
The current latest version is 0.2.8, but the test expects 3.0. 0.2.8 was released in 2011, so it seems quite safe to require the latest version.
2017-10-31Add LibWmf as a specified dependency, and associated tests.Félix Piédallu