-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathcfe_psp_id_api_handlers.c
More file actions
57 lines (49 loc) · 1.72 KB
/
Copy pathcfe_psp_id_api_handlers.c
File metadata and controls
57 lines (49 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/************************************************************************
* NASA Docket No. GSC-18,719-1, and identified as “core Flight System: Bootes”
*
* Copyright (c) 2020 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: cfe_psp_id_api_handlers.c
**
** Purpose:
** Unit test stubs for BSP routines
**
** Notes:
** Minimal work is done, only what is required for unit testing
**
*/
/*
** Includes
*/
#include "cfe_psp.h"
#include "utstubs.h"
#include <string.h>
void UT_DefaultHandler_CFE_PSP_GetProcessorName(void *UserObj, UT_EntryKey_t FuncKey, const UT_StubContext_t *Context)
{
/* const char *CFE_PSP_GetProcessorName(void) */
static const char default_retval[] = "UT";
const char * ptr;
int32 status;
UT_Stub_GetInt32StatusCode(Context, &status);
if (status >= 0)
{
if (UT_Stub_CopyToLocal(UT_KEY(CFE_PSP_GetProcessorName), &ptr, sizeof(ptr)) < sizeof(ptr))
{
ptr = default_retval;
}
UT_Stub_SetReturnValue(FuncKey, ptr);
}
}