diff options
author | Sam Freed <safreed@microsoft.com> | 2021-02-12 19:49:03 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-02-15 15:52:32 (GMT) |
commit | 7fd6bb6895c3c280dd73a76de05d0679ff0982a6 (patch) | |
tree | a44ef699461a7a7fc7c1fb2e2fce0bfde0e32afc /Source/cmCMakePresetsFile.cxx | |
parent | 7f2203ab4ad131e831b0574bb79a0ccb65126b14 (diff) | |
download | CMake-7fd6bb6895c3c280dd73a76de05d0679ff0982a6.zip CMake-7fd6bb6895c3c280dd73a76de05d0679ff0982a6.tar.gz CMake-7fd6bb6895c3c280dd73a76de05d0679ff0982a6.tar.bz2 |
presets: Remove unintended rerunFailed option from test presets
This was accidentally included after discussion in #21391 had decided to
leave it out. It was never included in a release.
Issue: #21391
Diffstat (limited to 'Source/cmCMakePresetsFile.cxx')
-rw-r--r-- | Source/cmCMakePresetsFile.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmCMakePresetsFile.cxx b/Source/cmCMakePresetsFile.cxx index e5557e6..673cb65 100644 --- a/Source/cmCMakePresetsFile.cxx +++ b/Source/cmCMakePresetsFile.cxx @@ -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, @@ -1340,7 +1338,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); |