Fix build warning/error introduced by 8d443029 (#1042)

"control reaches end of non-void function"

Signed-off-by: Kevin Petit <kevin.petit@arm.com>
This commit is contained in:
Kévin Petit
2020-11-06 10:09:33 +00:00
committed by GitHub
parent 12fce84a66
commit 0e67969989

View File

@@ -721,7 +721,8 @@ int parseAndCallCommandLineTests(int argc, const char *argv[],
{
case TEST_PASS:
case TEST_SKIP: return false;
case TEST_FAIL: return true;
case TEST_FAIL:
default: return true;
};
}))
{