-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1215 from skliper/fix1214-uninit_ut_var
Fix #1214, Resolve UT uninitialized variable warnings
- Loading branch information
Showing
3 changed files
with
57 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
src/unit-test-coverage/ut-stubs/src/os-shared-sockets-impl-handlers.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
* NASA Docket No. GSC-18,370-1, and identified as "Operating System Abstraction Layer" | ||
* | ||
* Copyright (c) 2019 United States Government as represented by | ||
* the Administrator of the National Aeronautics and Space Administration. | ||
* All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/** | ||
* \file | ||
* | ||
* Stub implementations for the functions defined in the OSAL API | ||
* | ||
* The stub implementation can be used for unit testing applications built | ||
* on top of OSAL. The stubs do not do any real function, but allow | ||
* the return code to be crafted such that error paths in the application | ||
* can be executed. | ||
*/ | ||
|
||
#include "osapi-sockets.h" /* OSAL public API for this subsystem */ | ||
#include "os-shared-sockets.h" | ||
#include "utstubs.h" | ||
|
||
/* | ||
* ----------------------------------------------------------------- | ||
* Default handler implementation | ||
* ----------------------------------------------------------------- | ||
*/ | ||
void UT_DefaultHandler_OS_SocketAddrGetPort_Impl(void *UserObj, UT_EntryKey_t FuncKey, const UT_StubContext_t *Context) | ||
{ | ||
uint16 *PortNum = UT_Hook_GetArgValueByName(Context, "PortNum", uint16 *); | ||
int32 status; | ||
|
||
UT_Stub_GetInt32StatusCode(Context, &status); | ||
|
||
if (status == OS_SUCCESS && | ||
UT_Stub_CopyToLocal(UT_KEY(OS_SocketAddrGetPort_Impl), PortNum, sizeof(*PortNum)) < sizeof(*PortNum)) | ||
{ | ||
*PortNum = 0; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters