Add regression 1031 (C++ support in TAs)

This commit adds C++ source files to the os_test TA and libraries.
Regression 1031 is added which tests the following:

- Construction of global objects in the TA main executable and in
  shared libraries (loaded automatically and via dlopen())
- Exception handling in the main program only (EH in shared libraries
  is not supported).
- A "mixed frame" exception test, in which a C++ function calls a C
  function which calls a C++ function which throws. The initial caller
  is expected to be able to catch the exception.

Signed-off-by: Jerome Forissier <jerome@forissier.org>
Acked-by: Jens Wiklander <jens.wiklander@linaro.org>
Acked-by: Etienne Carriere <etienne.carriere@linaro.org>
13 files changed
tree: 81b978667afe981ff0478adba8847a738ddf2db0
  1. .github/
  2. cert/
  3. host/
  4. package/
  5. scripts/
  6. ta/
  7. .gitignore
  8. Android.mk
  9. CMakeLists.txt
  10. CMakeToolchain.txt
  11. LICENSE.md
  12. Makefile
  13. README.md
  14. typedefs.checkpatch
README.md

OP-TEE sanity testsuite

This git contains source code for the test suite (xtest) used to test the OP-TEE project.

All official OP-TEE documentation has moved to http://optee.readthedocs.io. The information that used to be here in this git can be found under optee_test.

// OP-TEE core maintainers