aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/scripts/test_loaded_modules.py
blob: f824134f286387b600f2bbedc419713ebf7d6215 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from __future__ import annotations

import sys
import json
import typing as T

from . import meson_exe

# This script is used by run_unittests.py to verify we don't load too many
# modules when executing a wrapped command.
def run(args: T.List[str]) -> int:
    meson_exe.run(args)
    print(json.dumps(list(sys.modules.keys())))
    return 0