summaryrefslogtreecommitdiff
path: root/test cases/frameworks/11 gir subproject
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-02-13add a CI runner testing that Meson runs correctly under PyPy3Eli Schwartz
Silence a couple of framework tests that need to be skipped since we don't install their dependencies for pypy3.
2021-10-30Added warning if run_command is called without the check kwargVolker Weißmann
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-19Add some more implibs to list of installed files on cygwinJon Turney
Omitted from 0fc9a601 as these tests are skipped in CI
2018-02-21Skip test cases/frameworks/11 gir subproject if prereqs not foundJon Turney
Skip test cases/frameworks/11 gir subproject if g-ir-scanner or python3-gi not found
2018-01-06Update PATH for python-gi tests on WindowsJon Turney
Update PATH for python-gi tests on Windows, since updating LD_LIBRARY_PATH has no effect
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-01-04test/7 gnome: Fix on ICC and suppress a warningNirbheek Chauhan
Ignore warning 2282 about GCC pragmas since they are emitted in system headers and are extremely spammy. They are emitted because ICC pretends to be GCC via C macros but doesn't implement some pragmas. https://bugzilla.gnome.org/show_bug.cgi?id=776562 Also, append to LD_LIBRARY_PATH because ICC uses that for some internal libraries such as libintlc.so.
2016-08-29Test building gir file using internal dependenciesThibault Saunier