mirror of https://github.com/ARMmbed/mbed-os.git
Skip Mbed Crypto tests when when Mbed Crypto is OFF
parent
132f00ee12
commit
df1d36a0aa
|
@ -15,6 +15,10 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#if ((!defined(TARGET_PSA)) || (!defined(MBEDTLS_PSA_CRYPTO_C)))
|
||||||
|
#error [NOT_SUPPORTED] Mbed Crypto is OFF - skipping.
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include "mbed.h"
|
#include "mbed.h"
|
||||||
#include "greentea-client/test_env.h"
|
#include "greentea-client/test_env.h"
|
||||||
|
|
Loading…
Reference in New Issue