commit | e4ec9e4aca080e361fa48d713d3b1cf05f85ad20 | [log] [tgz] |
---|---|---|
author | Etienne Carriere <etienne.carriere@linaro.org> | Thu Mar 28 13:30:21 2019 +0100 |
committer | Jérôme Forissier <jerome.forissier@linaro.org> | Fri Apr 12 18:47:00 2019 +0200 |
tree | 4fd542b1f8e85ee62e7cfe84f175a477022b65da | |
parent | 102092ed689a22f5522e5934a4d94b65507f6277 [diff] |
xtest: Explicitly initialize local variables This change initializes all local variables to prevent build issues (warnings and/or errors) in OP-TEE test package. This change uses = { } for non-scalar variables and = 0 for scalar variables when there is no obvious value. This change falls back to memset() only when neither = { } nor = 0 is applicable, here pthread_t typed variable and variable size arrays. Signed-off-by: Etienne Carriere <etienne.carriere@linaro.org> Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org>
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