Framework: Fix missing return code
Fix missing return code from the test_err_to_str function.
Change-Id: If0065a6af3c4991c28c9cb77ef579767792fdf4a
Signed-off-by: Jackson Cooper-Driver <jackson.cooper-driver@arm.com>
diff --git a/tests_reg/test/framework/test_framework.c b/tests_reg/test/framework/test_framework.c
index d9a5232..496d422 100644
--- a/tests_reg/test/framework/test_framework.c
+++ b/tests_reg/test/framework/test_framework.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017-2022, Arm Limited. All rights reserved.
+ * SPDX-FileCopyrightText: Copyright The TrustedFirmware-M Contributors
*
* SPDX-License-Identifier: BSD-3-Clause
*
@@ -50,6 +50,8 @@
* covered in the switch.
*/
}
+
+ return NULL;
}
enum test_suite_err_t run_test(const char *suite_type, struct test_suite_t test_suites[])