Test: Add BL2 tests
Change-Id: Ie230b3e8caaeb35676be06e4ca9db45b04f64e97
Signed-off-by: Raef Coles <raef.coles@arm.com>
diff --git a/test/bl2/mcuboot/mcuboot_suites.c b/test/bl2/mcuboot/mcuboot_suites.c
new file mode 100644
index 0000000..e7188fd
--- /dev/null
+++ b/test/bl2/mcuboot/mcuboot_suites.c
@@ -0,0 +1,24 @@
+/*
+ * Copyright (c) 2017-2022, Arm Limited. All rights reserved.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ *
+ */
+
+#include "test_framework_integ_test.h"
+#include "test_framework_integ_test_helper.h"
+#include "test_framework.h"
+
+#include "mcuboot_integration_tests.h"
+
+static struct test_suite_t test_suites[] = {
+ {®ister_testsuite_mcuboot_integration, 0, 0, 0},
+
+ /* End of test suites */
+ {0, 0, 0, 0}
+};
+
+enum test_suite_err_t run_mcuboot_testsuite(void)
+{
+ return integ_test("MCUBOOT", test_suites);
+}