feat: skeleton for asymmetric feature testing capability
Signed-off-by: Manish Pandey <manish.pandey2@arm.com>
Change-Id: I6da831043c9485de00ba29a22ebaea6e9cdb5f57
diff --git a/tftf/tests/misc_tests/test_asymmetric_features.c b/tftf/tests/misc_tests/test_asymmetric_features.c
new file mode 100644
index 0000000..49fb439
--- /dev/null
+++ b/tftf/tests/misc_tests/test_asymmetric_features.c
@@ -0,0 +1,20 @@
+/*
+ * Copyright (c) 2024, Arm Limited. All rights reserved.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+#include <arch.h>
+#include <arch_helpers.h>
+#include <arm_arch_svc.h>
+#include <assert.h>
+#include <debug.h>
+#include <smccc.h>
+#include <sync.h>
+#include <tftf_lib.h>
+#include <platform_def.h>
+
+test_result_t test_asymmetric_features(void)
+{
+ return TEST_RESULT_SUCCESS;
+}
diff --git a/tftf/tests/tests-asymmetric-features.mk b/tftf/tests/tests-asymmetric-features.mk
new file mode 100644
index 0000000..86bb276
--- /dev/null
+++ b/tftf/tests/tests-asymmetric-features.mk
@@ -0,0 +1,7 @@
+#
+# Copyright (c) 2024, Arm Limited. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+
+TESTS_SOURCES += tftf/tests/misc_tests/test_asymmetric_features.c
diff --git a/tftf/tests/tests-asymmetric-features.xml b/tftf/tests/tests-asymmetric-features.xml
new file mode 100644
index 0000000..413ef2c
--- /dev/null
+++ b/tftf/tests/tests-asymmetric-features.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!--
+ Copyright (c) 2024, Arm Limited. All rights reserved.
+
+ SPDX-License-Identifier: BSD-3-Clause
+-->
+
+<testsuites>
+ <testsuite name="Asymmetric Features" description="Asymmetric features support">
+ <testcase name="Asymmetric Features"
+ function="test_asymmetric_features" />
+ </testsuite>
+</testsuites>