summaryrefslogtreecommitdiffstats
path: root/test cases/common/139 mesonintrospect from scripts/check_introspection.py
blob: 851a415c48626c28f885d4b467252bab1e7d0854 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python3

import os
import shlex
import subprocess


if 'MESONINTROSPECT' not in os.environ:
    raise RuntimeError('MESONINTROSPECT not found')
if 'MESON_BUILD_ROOT' not in os.environ:
    raise RuntimeError('MESON_BUILD_ROOT not found')

mesonintrospect = os.environ['MESONINTROSPECT']
introspect_arr = shlex.split(mesonintrospect)

buildroot = os.environ['MESON_BUILD_ROOT']

subprocess.check_output([*introspect_arr, '--all', buildroot])