aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2019-05-07 14:48:08 -0700
committerDylan Baker <dylan@pnwbakers.com>2019-05-10 13:36:35 -0700
commitd3a1994031992c0952abed94cc3c9f4cf274d4de (patch)
treef51cc6eb7697b7866a9a4df3dc5eff001e2dbfea
parent7d4e3d2589622b1900a740227861c3dc9275846b (diff)
downloadmeson-d3a1994031992c0952abed94cc3c9f4cf274d4de.zip
meson-d3a1994031992c0952abed94cc3c9f4cf274d4de.tar.gz
meson-d3a1994031992c0952abed94cc3c9f4cf274d4de.tar.bz2
tests/204: Fix intel-cl expectations
-rw-r--r--test cases/common/204 function attributes/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/test cases/common/204 function attributes/meson.build b/test cases/common/204 function attributes/meson.build
index 1e93803..58ac7c8 100644
--- a/test cases/common/204 function attributes/meson.build
+++ b/test cases/common/204 function attributes/meson.build
@@ -19,7 +19,7 @@ project('gcc func attributes', ['c', 'cpp'])
c = meson.get_compiler('c')
cpp = meson.get_compiler('cpp')
-expected_result = not ['msvc', 'clang-cl'].contains(c.get_id())
+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?
# A: It's too damn hard to figure out if you actually support it, since it
@@ -95,7 +95,7 @@ foreach a : ['dllexport', 'dllimport']
endforeach
message('checking get_supported_function_attributes')
-if not ['msvc', 'clang-cl'].contains(c.get_id())
+if not ['msvc', 'clang-cl', 'intel-cl'].contains(c.get_id())
multi_expected = attributes
else
multi_expected = []