Skip to content

Commit

Permalink
Merge branch 'master' into idm-4.2-troubleshoot
Browse files Browse the repository at this point in the history
  • Loading branch information
raul-marquez-csa authored May 14, 2024
2 parents cbbee32 + c7f7984 commit af0084b
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 279 deletions.
2 changes: 1 addition & 1 deletion examples/chip-tool/commands/common/Command.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ bool HandleNullableOptional(Argument & arg, char * argValue, std::function<bool(
if (arg.isNullable())
{
auto * nullable = reinterpret_cast<chip::app::DataModel::Nullable<T> *>(arg.value);
if (strcmp(argValue, "null") == 0)
if (argValue != nullptr && strncmp(argValue, "null", 4) == 0)
{
nullable->SetNull();
return true;
Expand Down
277 changes: 0 additions & 277 deletions src/app/tests/suites/certification/Test_TC_ICDM_2_2.yaml

This file was deleted.

1 change: 0 additions & 1 deletion src/app/tests/suites/manualTests.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@
"GeneralDiagnostics": ["Test_TC_DGGEN_2_2"],
"Identify": ["Test_TC_I_3_2"],
"IcdManagement": [
"Test_TC_ICDM_2_2",
"Test_TC_ICDM_3_1",
"Test_TC_ICDM_3_2",
"Test_TC_ICDM_3_3",
Expand Down

0 comments on commit af0084b

Please sign in to comment.