mirror of https://github.com/ARMmbed/mbed-os.git
Skip Mbed Crypto tests when when Mbed Crypto is OFF
parent
3e88dcf177
commit
1431e216ad
|
@ -15,6 +15,10 @@
|
|||
* 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 "mbed.h"
|
||||
#include "greentea-client/test_env.h"
|
||||
|
|
Loading…
Reference in New Issue