summaryrefslogtreecommitdiff
path: root/test cases/frameworks/12 multiple gir
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.
2021-12-06gnome module: deprecate passing false to install_dir_girEli Schwartz
Use a proper install option for this. Now `install_<type>` can directly override `install` instead of passing a boolean to the string kwarg `install_dir_<type>`.
2021-12-06gnome module: document and fix install_dir x3, by allowing false *_gir and ↵Eli Schwartz
*_typelib generate_gir forces building both the typelib and gir, and some people only want one or the other (probably only the typelib?) which means flagging the other as install_dir: false in the same way custom_target supports. As this always worked, albeit undocumented, make sure it keeps working. It's pretty reasonable to allow, anyway. Fixes https://github.com/mesonbuild/meson/pull/9484#issuecomment-980131791
2021-07-13Add expected skip annotations for non-linux CI runs to framework testsJon Turney
2021-05-20Revert "Disable failing Cygwin GIR test."Jon Turney
This partially reverts commit add502c6483bde9dc6a0ba80b3c79163304465a4.
2021-02-18Disable failing Cygwin GIR test.Jussi Pakkanen
2020-02-25test: merge installed_files.txt into test.jsonDaniel Mensinger
2018-09-14run_proect_tests: add cygwin as platform fix nameMarco Trevisan (Treviño)
2018-09-14test cases: add missing files to installed_files.txtMarco Trevisan (Treviño)
All these are marked as files to be installed, so we need list them.
2018-02-21Skip test cases/frameworks/12 multiple gir if g-ir-scanner not foundJon Turney
2018-01-06Fix installed files check for gobject-introspection tests on CygwinJon Turney
g-ir-scanner --no-libtool needed some fixes similar to [1] for Cygwin, as well. Now that is done, it's possible to make these tests run and pass on Cygwin. [1] https://bugzilla.gnome.org/show_bug.cgi?id=781525
2017-08-31Use include-uninstalled for internal gir deps.Elliott Sales de Andrade
This stops g-ir-scanner from trying to search for the pkg-config file for an internal gir, which won't be available.
2016-09-14Also add GIR include_directories to header search path.Elliott Sales de Andrade
2016-09-14Allow GirTargets as includes for another GirTarget.Elliott Sales de Andrade
2016-09-14Determine GIR include paths like targets.Elliott Sales de Andrade
These paths are now generated similar to NinjaBackend.generate_single_compile where IncludeDirs create includes of both the build directory path and the source directory path. This also fixes a bug with include_directories, where the path string supplied to the IncludeDirs initializer was used for the search path, instead of the actual location to which it referred. Often, this was a '.', and not a really useful path.