skip common/223 for PGI, as even 19.4 doesn't fully support C++17 as claimed

pull/5733/head
Michael Hirsch, Ph.D 6 years ago
parent c2f2e51105
commit f5554957cb
No known key found for this signature in database
GPG Key ID: 6D23CDADAB0294F9
  1. 6
      test cases/common/223 source set realistic example/meson.build

@ -2,6 +2,12 @@
# modules, inspired by QEMU's build system
project('sourceset-example', 'cpp')
cppid = meson.get_compiler('cpp').get_id()
if cppid == 'pgi'
error('MESON_SKIP_TEST: Even PGI 19.4 that claims C++17 full support, cannot handle auto x = y syntax used in this test.')
endif
ss = import('sourceset')
kconfig = import('unstable-kconfig')

Loading…
Cancel
Save