|
|
@@ -631,8 +631,6 @@ auto const TestPresetExecutionHelper =
|
|
|
PresetOptionalIntHelper, false)
|
|
|
.Bind("showOnly"_s, &TestPreset::ExecutionOptions::ShowOnly,
|
|
|
TestPresetOptionalExecutionShowOnlyHelper, false)
|
|
|
- .Bind("rerunFailed"_s, &TestPreset::ExecutionOptions::RerunFailed,
|
|
|
- PresetOptionalBoolHelper, false)
|
|
|
.Bind("repeat"_s, &TestPreset::ExecutionOptions::Repeat,
|
|
|
TestPresetOptionalExecutionRepeatHelper, false)
|
|
|
.Bind("interactiveDebugging"_s,
|
|
|
@@ -1280,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,
|
|
|
@@ -1340,7 +1339,6 @@ cmCMakePresetsFile::TestPreset::VisitPresetInherit(
|
|
|
parentExecution.ResourceSpecFile);
|
|
|
InheritOptionalValue(execution.TestLoad, parentExecution.TestLoad);
|
|
|
InheritOptionalValue(execution.ShowOnly, parentExecution.ShowOnly);
|
|
|
- InheritOptionalValue(execution.RerunFailed, parentExecution.RerunFailed);
|
|
|
InheritOptionalValue(execution.Repeat, parentExecution.Repeat);
|
|
|
InheritOptionalValue(execution.InteractiveDebugging,
|
|
|
parentExecution.InteractiveDebugging);
|