commit | f88f69eb27beda52998de09cd89a7ee422da00d9 | [log] [tgz] |
---|---|---|
author | Victor Chong <victor.chong@linaro.org> | Sun Oct 10 02:19:57 2021 +0900 |
committer | Jérôme Forissier <jerome@forissier.org> | Sat Oct 09 20:57:36 2021 +0200 |
tree | 79d438feb9f83f1b10ec4b361027b7882555a161 | |
parent | 1399f0d536f891e28aa82f024cb15b2e28ee7431 [diff] |
xtest: pkcs11: fix unused errors Fix unused parameter and unused variable errors with building pkcs11_1000.c with OPENSSL disabled, i.e. WITH_OPENSSL = n or undefined. host/xtest/pkcs11_1000.c:7425:49: error: unused parameter 'c' [-Werror, -Wunused-parameter] static void xtest_pkcs11_test_1024(ADBG_Case_t *c) ^ host/xtest/pkcs11_1000.c:7409:19: error: unused variable 'x509_example_root_ca' [-Werror,-Wunused-const-variable] static const char x509_example_root_ca[] = ^ Signed-off-by: Victor Chong <victor.chong@linaro.org> Reviewed-by: Jerome Forissier <jerome@forissier.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