aboutsummaryrefslogtreecommitdiff
path: root/run_unittests.py
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2019-12-05 11:42:50 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2019-12-10 20:17:21 +0200
commitfc800a2cb8cb754e55db1b6ede287079d44dc244 (patch)
tree7c6bdfd3f92594968c7ec6b08485eb99c6e9dbda /run_unittests.py
parent38d3fbca9465e4c89e479be5a98b5085a7f83039 (diff)
downloadmeson-fc800a2cb8cb754e55db1b6ede287079d44dc244.zip
meson-fc800a2cb8cb754e55db1b6ede287079d44dc244.tar.gz
meson-fc800a2cb8cb754e55db1b6ede287079d44dc244.tar.bz2
mintro: Add version key to --scan-dependencies (fixes #6287)
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-xrun_unittests.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py
index b0668aa..770d236 100755
--- a/run_unittests.py
+++ b/run_unittests.py
@@ -4063,30 +4063,35 @@ recommended as it is not supported on some platforms''')
{
'name': 'threads',
'required': True,
+ 'version': [],
'has_fallback': False,
'conditional': False
},
{
'name': 'zlib',
'required': False,
+ 'version': [],
'has_fallback': False,
'conditional': False
},
{
'name': 'bugDep1',
- 'required': False,
+ 'required': True,
+ 'version': [],
'has_fallback': False,
'conditional': False
},
{
'name': 'somethingthatdoesnotexist',
'required': True,
+ 'version': ['>=1.2.3'],
'has_fallback': False,
'conditional': True
},
{
'name': 'look_i_have_a_fallback',
'required': True,
+ 'version': ['>=1.0.0', '<=99.9.9'],
'has_fallback': True,
'conditional': True
}