Disable failing Cygwin GIR test.

This commit is contained in:
Jussi Pakkanen 2021-02-17 18:55:36 +02:00
parent 756ea32e06
commit add502c648
6 changed files with 22 additions and 0 deletions

View File

@ -3058,6 +3058,8 @@ class AllPlatformTests(BasePlatformTests):
@skip_if_not_base_option('b_lto_threads')
def test_lto_threads(self):
if is_cygwin():
raise unittest.SkipTest('LTO is broken on Cygwin.')
testdir = os.path.join(self.common_test_dir, '6 linkshared')
env = get_fake_env(testdir, self.builddir, self.prefix)

View File

@ -5,6 +5,10 @@ if not gir.found()
error('MESON_SKIP_TEST g-ir-scanner not found.')
endif
if build_machine.system() == 'cygwin'
error('MESON_SKIP_TEST GIR seems to be broken in Cygwin and no-one knows how to fix it. Thus we have to disable this.')
endif
python3 = import('python3')
py3 = python3.find_python()
if run_command(py3, '-c', 'import gi;').returncode() != 0

View File

@ -5,6 +5,10 @@ if not gir.found()
error('MESON_SKIP_TEST g-ir-scanner not found.')
endif
if build_machine.system() == 'cygwin'
error('MESON_SKIP_TEST GIR seems to be broken in Cygwin and no-one knows how to fix it. Thus we have to disable this.')
endif
gnome = import('gnome')
gobj = dependency('gobject-2.0')

View File

@ -4,6 +4,10 @@ if not dependency('glib-2.0', required : false).found() or not find_program('g-i
error('MESON_SKIP_TEST glib not found.')
endif
if build_machine.system() == 'cygwin'
error('MESON_SKIP_TEST GIR seems to be broken in Cygwin and no-one knows how to fix it. Thus we have to disable this.')
endif
gnome = import('gnome')
glib = dependency('glib-2.0')
gobject = dependency('gobject-2.0')

View File

@ -4,6 +4,10 @@ if not dependency('gobject-2.0', required : false).found() or not find_program('
error('MESON_SKIP_TEST gobject not found.')
endif
if build_machine.system() == 'cygwin'
error('MESON_SKIP_TEST GIR seems to be broken in Cygwin and no-one knows how to fix it. Thus we have to disable this.')
endif
gnome = import('gnome')
gobject = dependency('gobject-2.0')

View File

@ -1,5 +1,9 @@
project('vapi-test', ['c', 'vala'])
if build_machine.system() == 'cygwin'
error('MESON_SKIP_TEST GIR seems to be broken in Cygwin and no-one knows how to fix it. Thus we have to disable this.')
endif
gnome = import('gnome')
subdir('libfoo')
subdir('libbar')