diff --git a/modules/cfe_testcase/CMakeLists.txt b/modules/cfe_testcase/CMakeLists.txt index 1318d7926..d28ff9c4c 100644 --- a/modules/cfe_testcase/CMakeLists.txt +++ b/modules/cfe_testcase/CMakeLists.txt @@ -12,6 +12,7 @@ add_cfe_app(cfe_testcase src/sb_pipe_mang_test.c src/time_arithmetic_test.c src/time_current_test.c + src/time_misc_test.c ) # register the dependency on cfe_assert diff --git a/modules/cfe_testcase/src/cfe_test.c b/modules/cfe_testcase/src/cfe_test.c index 016eadc57..a67601902 100644 --- a/modules/cfe_testcase/src/cfe_test.c +++ b/modules/cfe_testcase/src/cfe_test.c @@ -61,6 +61,7 @@ void CFE_TestMain(void) SBPipeMangSetup(); TimeArithmeticTestSetup(); TimeCurrentTestSetup(); + TimeMiscTestSetup(); /* * Execute the tests diff --git a/modules/cfe_testcase/src/cfe_test.h b/modules/cfe_testcase/src/cfe_test.h index e661c6849..1c58467de 100644 --- a/modules/cfe_testcase/src/cfe_test.h +++ b/modules/cfe_testcase/src/cfe_test.h @@ -88,5 +88,6 @@ void FSUtilTestSetup(void); void SBPipeMangSetup(void); void TimeArithmeticTestSetup(void); void TimeCurrentTestSetup(void); +void TimeMiscTestSetup(void); #endif /* CFE_TEST_H */ diff --git a/modules/cfe_testcase/src/time_misc_test.c b/modules/cfe_testcase/src/time_misc_test.c new file mode 100644 index 000000000..d243b637e --- /dev/null +++ b/modules/cfe_testcase/src/time_misc_test.c @@ -0,0 +1,58 @@ +/************************************************************************* +** +** GSC-18128-1, "Core Flight Executive Version 6.7" +** +** Copyright (c) 2006-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: time_misc_test.c +** +** Purpose: +** Functional test of miscelaneous Time APIs +** +** Demonstration of how to register and use the UT assert functions. +** +*************************************************************************/ + +/* + * Includes + */ + +#include "cfe_test.h" + +void TestTimePrint(void) +{ + UtPrintf("Testing: CFE_TIME_Print"); + char timeBuf1[sizeof("yyyy-ddd-hh:mm:ss.xxxxx_")]; + CFE_TIME_SysTime_t time1 = {0, 0}; + /* 365 days */ + CFE_TIME_SysTime_t time2 = {31536000, 0}; + /* 366 days */ + CFE_TIME_SysTime_t time3 = {31622400, 0}; + + CFE_TIME_Print(NULL, time1); + CFE_TIME_Print(timeBuf1, time1); + UtPrintf("%s", timeBuf1); + CFE_TIME_Print(timeBuf1, time2); + UtPrintf("%s", timeBuf1); + CFE_TIME_Print(timeBuf1, time3); + UtPrintf("%s", timeBuf1); +} + +void TimeMiscTestSetup(void) +{ + UtTest_Add(TestTimePrint, NULL, NULL, "Test Time Print"); +}