Disable failing Cygwin GIR test.
This commit is contained in:
parent
756ea32e06
commit
add502c648
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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')
|
||||
|
||||
|
|
|
@ -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')
|
||||
|
|
|
@ -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')
|
||||
|
||||
|
|
|
@ -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')
|
||||
|
|
Loading…
Reference in New Issue