aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/backend/backends.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/backend/backends.py')
-rw-r--r--mesonbuild/backend/backends.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/mesonbuild/backend/backends.py b/mesonbuild/backend/backends.py
index 4f7e8c8..b26779a 100644
--- a/mesonbuild/backend/backends.py
+++ b/mesonbuild/backend/backends.py
@@ -225,6 +225,7 @@ class TestSerialisation:
cmd_is_built: bool
depends: T.List[str]
version: str
+ verbose: bool
def __post_init__(self) -> None:
if self.exe_wrapper is not None:
@@ -1147,7 +1148,8 @@ class Backend:
extra_paths, t.protocol, t.priority,
isinstance(exe, build.Executable),
[x.get_id() for x in depends],
- self.environment.coredata.version)
+ self.environment.coredata.version,
+ t.verbose)
arr.append(ts)
return arr