Skip to content

Commit

Permalink
Add darwin-framework-tool to xcode
Browse files Browse the repository at this point in the history
  • Loading branch information
krypton36 committed Feb 8, 2023
1 parent c49ee00 commit 158e047
Show file tree
Hide file tree
Showing 4 changed files with 715 additions and 9 deletions.
2 changes: 2 additions & 0 deletions src/app/tests/suites/commands/delay/DelayCommands.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ CHIP_ERROR DelayCommands::WaitForMessage(const char * identity,

CHIP_ERROR DelayCommands::RunInternal(const char * command)
{
#if !TARGET_OS_TV && !TARGET_OS_WATCH
VerifyOrReturnError(system(command) == 0, CHIP_ERROR_INTERNAL);
#endif
return ContinueOnChipMainThread(CHIP_NO_ERROR);
}

Expand Down
2 changes: 2 additions & 0 deletions src/app/tests/suites/commands/system/SystemCommands.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,9 @@ CHIP_ERROR SystemCommands::RunInternal(const char * scriptName, const chip::Opti

CHIP_ERROR SystemCommands::RunInternal(const char * command)
{
#if !TARGET_OS_TV && !TARGET_OS_WATCH
VerifyOrReturnError(system(command) == 0, CHIP_ERROR_INTERNAL);
#endif
return ContinueOnChipMainThread(CHIP_NO_ERROR);
}

Expand Down
Loading

0 comments on commit 158e047

Please sign in to comment.