I enabled the address sanitizer and ran the coverage-fs-ALL test when it flagged a READ buffer overflow at this line here:
UtAssert_INT32_EQ(CFE_FS_ParseInputFileNameEx(OutBuffer, "/path/", sizeof(OutBuffer), 10, NULL, TEST_DEFAULT_PATH,
TEST_DEFAULT_EXTENSION),
I believe the issue is that while the input buffer ("/path/") is only 7 (including the null-terminator), the input buffer length is set to 10.