summaryrefslogtreecommitdiff
path: root/br-ext
diff options
context:
space:
mode:
Diffstat (limited to 'br-ext')
-rw-r--r--br-ext/package/optee_test_ext/Config.in6
-rw-r--r--br-ext/package/optee_test_ext/optee_test_ext.mk4
2 files changed, 10 insertions, 0 deletions
diff --git a/br-ext/package/optee_test_ext/Config.in b/br-ext/package/optee_test_ext/Config.in
index e613185..dd4a4d7 100644
--- a/br-ext/package/optee_test_ext/Config.in
+++ b/br-ext/package/optee_test_ext/Config.in
@@ -43,4 +43,10 @@ config BR2_PACKAGE_OPTEE_TEST_EXT_WITH_TLS_TESTS
Select Thread Local Storage tests in Trusted Applications. Some
toolchains may not support this.
+config BR2_PACKAGE_OPTEE_TEST_EXT_WITH_CXX_TESTS
+ bool "with-cxx-tests"
+ help
+ Select C++ tests in Trusted Applications. Some toolchains may not
+ support this.
+
endif
diff --git a/br-ext/package/optee_test_ext/optee_test_ext.mk b/br-ext/package/optee_test_ext/optee_test_ext.mk
index b05d0a0..5476fc8 100644
--- a/br-ext/package/optee_test_ext/optee_test_ext.mk
+++ b/br-ext/package/optee_test_ext/optee_test_ext.mk
@@ -19,6 +19,10 @@ ifneq ($(BR2_PACKAGE_OPTEE_TEST_EXT_WITH_TLS_TESTS),)
TARGET_CONFIGURE_OPTS += WITH_TLS_TESTS=$(BR2_PACKAGE_OPTEE_TEST_EXT_WITH_TLS_TESTS)
endif
+ifneq ($(BR2_PACKAGE_OPTEE_TEST_EXT_WITH_CXX_TESTS),)
+TARGET_CONFIGURE_OPTS += WITH_CXX_TESTS=$(BR2_PACKAGE_OPTEE_TEST_EXT_WITH_CXX_TESTS)
+endif
+
define OPTEE_TEST_EXT_PREPARE_GP_SUITE
sh $(@D)/host/xtest/gp/prepare_suite.sh $(@D) \
$(BR2_PACKAGE_OPTEE_TEST_EXT_GP_PACKAGE)