aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hirsch, Ph.D <scivision@users.noreply.github.com>2019-08-01 00:02:05 -0400
committerDylan Baker <dylan@pnwbakers.com>2019-08-14 13:13:22 -0700
commit02159bc54b638fe2463deef33e2447557e8fd316 (patch)
treed1da7dc67e79d8b1eb15aa9ce2f8dbec081fb106
parentc5a0dfcfa87eb55c0c75d4c7eaa2ee3555d1f7ee (diff)
downloadmeson-02159bc54b638fe2463deef33e2447557e8fd316.zip
meson-02159bc54b638fe2463deef33e2447557e8fd316.tar.gz
meson-02159bc54b638fe2463deef33e2447557e8fd316.tar.bz2
tests: skip common/204 for PGI (need unique feature list)
-rw-r--r--test cases/common/203 function attributes/meson.build4
1 files changed, 4 insertions, 0 deletions
diff --git a/test cases/common/203 function attributes/meson.build b/test cases/common/203 function attributes/meson.build
index 58ac7c8..43ed011 100644
--- a/test cases/common/203 function attributes/meson.build
+++ b/test cases/common/203 function attributes/meson.build
@@ -19,6 +19,10 @@ project('gcc func attributes', ['c', 'cpp'])
c = meson.get_compiler('c')
cpp = meson.get_compiler('cpp')
+if c.get_id() == 'pgi'
+ error('MESON_SKIP_TEST: PGI supports its own set of features, will need a seperate list for PGI to test it.')
+endif
+
expected_result = not ['msvc', 'clang-cl', 'intel-cl'].contains(c.get_id())
# Q: Why is ifunc not in this list or any of the below lists?