Remove prints in get_overall_test_result()
If we need to know the individual tests results of each CPU then it
would be better to store them in the test report in non-volatile memory.
At the moment, we only store the overall test result, which seems to
provide enough information.
Change-Id: I7429a07062705244eca9c7587bd7c92c468464eb
Signed-off-by: Sandrine Bailleux <sandrine.bailleux@arm.com>
diff --git a/tftf/framework/main.c b/tftf/framework/main.c
index ea56f2e..02b5438 100644
--- a/tftf/framework/main.c
+++ b/tftf/framework/main.c
@@ -182,7 +182,6 @@
switch (test_results[core_pos]) {
case TEST_RESULT_NA:
- VERBOSE("CPU%u not involved in the test\n", core_pos);
/* Ignoring */
break;
@@ -191,7 +190,6 @@
* If at least one CPU skipped the test, consider the
* whole test as skipped as well.
*/
- NOTICE("CPU%u skipped the test\n", core_pos);
return TEST_RESULT_SKIPPED;
case TEST_RESULT_SUCCESS:
@@ -199,7 +197,6 @@
break;
case TEST_RESULT_FAIL:
- ERROR("CPU%u failed the test\n", core_pos);
return TEST_RESULT_FAIL;
case TEST_RESULT_CRASHED:
@@ -211,7 +208,6 @@
* If at least one CPU crashed, consider the whole test
* as crashed as well.
*/
- ERROR("CPU%u never returned from the test!\n", core_pos);
return TEST_RESULT_CRASHED;
default: