Merge pull request #6707 from jon-turney/bogus-failing-tests

Fix various failing-meson tests
pull/6596/head
Jussi Pakkanen 5 years ago committed by GitHub
commit 9823db5e2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      test cases/failing/19 target clash/meson.build
  2. 0
      test cases/failing/30 invalid man extension/foo.a1
  3. 0
      test cases/failing/31 no man extension/foo
  4. 4
      test cases/failing/71 invalid escape char/meson.build
  5. 2
      test cases/failing/81 framework dependency with version/meson.build
  6. 2
      test cases/failing/86 dub libray/meson.build
  7. 2
      test cases/failing/87 dub executable/meson.build
  8. 2
      test cases/failing/88 dub compiler/meson.build

@ -12,4 +12,4 @@ if host_machine.system() == 'windows' or host_machine.system() == 'cygwin'
endif
executable('clash', 'clash.c')
run_target('clash', 'echo', 'clash 1')
run_target('clash', command: ['echo', 'clash 1'])

@ -1,4 +0,0 @@
# Make sure meson exits on invalid string
# The string below contains an invalid unicode code point
'my name is what \uxyzo who are you'

@ -1,4 +1,4 @@
project('framework dependency with version')
project('framework dependency with version', 'c')
# do individual frameworks have a meaningful version to test? And multiple frameworks might be listed...
# otherwise we're not on OSX and this will definitely fail
dep = dependency('appleframeworks', modules: 'foundation', version: '>0')

@ -1,3 +1,3 @@
project('dub', 'd', meson_version: '0.48.0')
project('dub', 'd')
dependency('dubtestproject', method: 'dub') # Not library (none)

@ -1,3 +1,3 @@
project('dub', 'd', meson_version: '0.48.0')
project('dub', 'd')
dependency('dubtestproject:test1', method: 'dub') # Not library (executable)

@ -1,4 +1,4 @@
project('dub', 'd', meson_version: '0.48.0')
project('dub', 'd')
if meson.get_compiler('d').get_id() == 'dmd'
if host_machine.system() == 'windows' or host_machine.system() == 'cygwin'

Loading…
Cancel
Save