Skip to content

Commit 49232e8

Browse files
Avoid a lowercase letter in a macro name
1 parent 1b9505c commit 49232e8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/suites/test_suite_psa_crypto.data

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -324,11 +324,11 @@ depends_on:MBEDTLS_AES_C
324324
import_with_data:"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa":PSA_KEY_TYPE_AES:128:PSA_ERROR_INVALID_ARGUMENT
325325

326326
PSA import large key: raw, 65528 bits (ok)
327-
depends_on:HAVE_RAM_AVAILABLE_128k
327+
depends_on:HAVE_RAM_AVAILABLE_128K
328328
import_large_key:PSA_KEY_TYPE_RAW_DATA:8191:PSA_SUCCESS
329329

330330
PSA import large key: raw, 65536 bits (not supported)
331-
depends_on:HAVE_RAM_AVAILABLE_128k
331+
depends_on:HAVE_RAM_AVAILABLE_128K
332332
import_large_key:PSA_KEY_TYPE_RAW_DATA:8192:PSA_ERROR_NOT_SUPPORTED
333333

334334
PSA import RSA key pair: maximum size exceeded
@@ -2228,7 +2228,7 @@ PSA generate key: raw data, 8 bits
22282228
generate_key:PSA_KEY_TYPE_RAW_DATA:8:PSA_KEY_USAGE_EXPORT:0:PSA_SUCCESS
22292229

22302230
PSA generate key: raw data, 65528 bits (ok)
2231-
depends_on:HAVE_RAM_AVAILABLE_128k
2231+
depends_on:HAVE_RAM_AVAILABLE_128K
22322232
generate_key:PSA_KEY_TYPE_RAW_DATA:8:PSA_KEY_USAGE_EXPORT:0:PSA_SUCCESS
22332233

22342234
PSA generate key: raw data, 65536 bits (not supported)

tests/suites/test_suite_psa_crypto.function

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* are always executed. In the future we should make this conditional
1313
* so that tests that require a lot of memory are skipped on constrained
1414
* platforms. */
15-
#define HAVE_RAM_AVAILABLE_128k
15+
#define HAVE_RAM_AVAILABLE_128K
1616

1717
/** An invalid export length that will never be set by psa_export_key(). */
1818
static const size_t INVALID_EXPORT_LENGTH = ~0U;

0 commit comments

Comments
 (0)