summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorSam Freed <safreed@microsoft.com>2021-02-12 11:49:36 -0800
committerBrad King <brad.king@kitware.com>2021-02-15 10:52:32 -0500
commit121d602923373f89d4b8e1b59fa79c55137ab11f (patch)
tree7ace875e330ec53aae4668511dee84c440add8cd /Source
parent7fd6bb6895c3c280dd73a76de05d0679ff0982a6 (diff)
downloadcmake-121d602923373f89d4b8e1b59fa79c55137ab11f.tar.gz
presets: Inherit 'quiet' property for test presets
This was missed in the original implementation.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmCMakePresetsFile.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmCMakePresetsFile.cxx b/Source/cmCMakePresetsFile.cxx
index 673cb65bc1..29d532506c 100644
--- a/Source/cmCMakePresetsFile.cxx
+++ b/Source/cmCMakePresetsFile.cxx
@@ -1278,6 +1278,7 @@ cmCMakePresetsFile::TestPreset::VisitPresetInherit(
InheritOptionalValue(output.Debug, parentOutput.Debug);
InheritOptionalValue(output.OutputOnFailure,
parentOutput.OutputOnFailure);
+ InheritOptionalValue(output.Quiet, parentOutput.Quiet);
InheritString(output.OutputLogFile, parentOutput.OutputLogFile);
InheritOptionalValue(output.LabelSummary, parentOutput.LabelSummary);
InheritOptionalValue(output.SubprojectSummary,