summaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2019-02-20 17:34:38 +0100
committerDaniel Mensinger <daniel@mensinger-ka.de>2019-05-03 01:39:16 +0200
commita9930fe066b4fd7b36478e3962bb0ccdb6ed5241 (patch)
treece04b7fc128ca7fd4ec12062625cf01b42ff531b /test cases
parent5086e34d3a7a06e2121fe4541e6919a784094343 (diff)
downloadmeson-a9930fe066b4fd7b36478e3962bb0ccdb6ed5241.tar.gz
LLVM: Added CMake backend
Diffstat (limited to 'test cases')
-rw-r--r--test cases/common/161 config tool variable/meson.build2
-rw-r--r--test cases/unit/47 native file binary/meson.build2
2 files changed, 2 insertions, 2 deletions
diff --git a/test cases/common/161 config tool variable/meson.build b/test cases/common/161 config tool variable/meson.build
index 0643042d8..95841179c 100644
--- a/test cases/common/161 config tool variable/meson.build
+++ b/test cases/common/161 config tool variable/meson.build
@@ -15,7 +15,7 @@
project('config tool variable', 'cpp')
-dep_llvm = dependency('llvm', required : false)
+dep_llvm = dependency('llvm', method : 'config-tool', required : false)
if not dep_llvm.found()
error('MESON_SKIP_TEST LLVM not installed.')
endif
diff --git a/test cases/unit/47 native file binary/meson.build b/test cases/unit/47 native file binary/meson.build
index 4489ac1e6..c9b6e5de4 100644
--- a/test cases/unit/47 native file binary/meson.build
+++ b/test cases/unit/47 native file binary/meson.build
@@ -8,7 +8,7 @@ if case == 'find_program'
assert(result.stdout().strip().endswith('12345'), 'Didn\'t load bash from config file')
elif case == 'config_dep'
add_languages('cpp')
- dep = dependency('llvm')
+ dep = dependency('llvm', method : 'config-tool')
assert(dep.get_configtool_variable('version').endswith('12345'), 'Didn\'t load llvm from config file')
elif case == 'python3'
prog = import('python3').find_python()