minor tweaks
fsfw/fsfw/pipeline/pr-development This commit looks good Details

This commit is contained in:
Robin Müller 2022-03-10 09:40:34 +01:00
parent 3779b44813
commit 6b1a81ee92
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
1 changed files with 5 additions and 1 deletions

View File

@ -55,8 +55,12 @@ TEST_CASE("Version API Tests", "[TestVersionAPI]") {
REQUIRE(v1 == v2);
REQUIRE(v1 <= v2);
REQUIRE(v1 >= v2);
#if FSFW_CPP_OSTREAM_ENABLED == 1
sif::info << "v" << fsfw::FSFW_VERSION << std::endl;
#endif
char verString[10] = {};
fsfw::FSFW_VERSION.getVersion(verString, sizeof(verString));
sif::info << "v" << verString << std::endl;
#if FSFW_DISABLE_PRINTOUT == 0
printf("v%s\n",verString);
#endif
}