aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2024-04-09 23:14:20 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2024-04-09 23:16:43 +0300
commit552c4325ea6575da5d135be2818c6a19ad9345c6 (patch)
treedfeb987605cdbb9584c91964039a341206715ab6
parentfdee6a435b1a0063f1b357768411e2d752caf862 (diff)
downloadmeson-cleantestoutput.zip
meson-cleantestoutput.tar.gz
meson-cleantestoutput.tar.bz2
Document a probable cause for test failures.cleantestoutput
-rw-r--r--test cases/frameworks/4 qt/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/frameworks/4 qt/meson.build b/test cases/frameworks/4 qt/meson.build
index 759e6cc..54cd7cb 100644
--- a/test cases/frameworks/4 qt/meson.build
+++ b/test cases/frameworks/4 qt/meson.build
@@ -48,7 +48,7 @@ foreach qt : ['qt4', 'qt5', 'qt6']
qtdep = dependency(qt, modules : qt_modules, main : true, private_headers: true, required : required, method : get_option('method'))
if qtdep.found()
qtmodule = import(qt)
- assert(qtmodule.has_tools())
+ assert(qtmodule.has_tools(), 'You may be missing a devel package. (qttools5-dev-tools on Debian based systems)')
# Test that fetching a variable works and yields a non-empty value
assert(qtdep.get_variable('prefix', configtool: 'QT_INSTALL_PREFIX') != '')