mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 13:26:10 +01:00
Fix uninit memory in Clara tests
This commit is contained in:
parent
5baa29b6b9
commit
07cdef2096
@ -52,12 +52,11 @@ TEST_CASE("Clara::Arg supports single-arg parse the way Opt does", "[clara][arg]
|
|||||||
}
|
}
|
||||||
|
|
||||||
TEST_CASE("Clara::Opt supports accept-many lambdas", "[clara][opt]") {
|
TEST_CASE("Clara::Opt supports accept-many lambdas", "[clara][opt]") {
|
||||||
std::string name;
|
|
||||||
using namespace Catch::Clara;
|
using namespace Catch::Clara;
|
||||||
std::vector<std::string> res;
|
std::vector<std::string> res;
|
||||||
const auto push_to_res = [&](std::string const& s) {
|
const auto push_to_res = [&](std::string const& s) {
|
||||||
res.push_back(s);
|
res.push_back(s);
|
||||||
return ParserResult::ok();
|
return ParserResult::ok( ParseResultType::Matched );
|
||||||
};
|
};
|
||||||
|
|
||||||
SECTION("Parsing fails on multiple options without accept_many") {
|
SECTION("Parsing fails on multiple options without accept_many") {
|
||||||
|
Loading…
Reference in New Issue
Block a user