Skip to content

Commit ec845a7

Browse files
author
Cruz Monrreal
authored
Merge pull request #9957 from kfnta/nxp_integration_general
Fix issues found in LPC55S69 integration
2 parents beb2698 + 730e9b8 commit ec845a7

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

TESTS/psa/spm_client/COMPONENT_NSPE/main.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,14 +460,16 @@ Case cases[] = {
460460
Case("Testing client tx_buff_null", tx_buff_null),
461461
Case("Testing client rx_tx_null", rx_tx_null),
462462
Case("Testing client multiple_call from a single thread", multiple_call),
463-
Case("Testing client exceed num of max channels allowed", exceed_num_of_max_channels),
464463
Case("Testing client close on NULL handle", client_close_null_handle),
465464
Case("Testing DROP_CONNECTION State", drop_connection),
466465
Case("Testing client psa_framework_version() API", verify_psa_framework_version),
467466
Case("Testing client psa_version() API on existing SID", psa_version_existing),
468467
Case("Testing client psa_version() API on non-existing SID", psa_version_non_existing),
469468
Case("Testing client psa_version() API to a service that is not NSPE callable", psa_version_secure_access_only),
470469
Case("Testing client multiple calls on different channels to the same SID", multi_thread_diff_handles),
470+
#if defined TARGET_MBED_SPM // TF-M issue: https://developer.trustedfirmware.org/T244
471+
Case("Testing client exceed num of max channels allowed", exceed_num_of_max_channels),
472+
#endif
471473
};
472474

473475
utest::v1::status_t test_setup(const size_t number_of_cases)

TESTS/psa/spm_server/COMPONENT_NSPE/main.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,9 @@ Case cases[] = {
264264
SPM_UTEST_CASE("Try to skip more bytes than left while reading", skip_more_than_left),
265265
SPM_UTEST_CASE("Test rhandle implementation by calculating the factorial function", rhandle_factorial),
266266
SPM_UTEST_CASE("Test a call flow between 2 secure partitions", cross_partition_call),
267+
#if defined TARGET_MBED_SPM // TF-M issue: https://developer.trustedfirmware.org/T273
267268
SPM_UTEST_CASE("Test a common DOORBELL scenario", doorbell_test),
269+
#endif
268270
};
269271

270272
//Declare your test specification with a custom setup handler

TESTS/psa/spm_server/COMPONENT_SPE/tests.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -698,6 +698,8 @@ psa_test_server_side_func test_list[] = {
698698
PSA_TEST_SERVER_NAME(skip_more_than_left),
699699
PSA_TEST_SERVER_NAME(rhandle_factorial),
700700
PSA_TEST_SERVER_NAME(cross_partition_call),
701+
#if defined TARGET_MBED_SPM // TF-M issue: https://developer.trustedfirmware.org/T273
701702
PSA_TEST_SERVER_NAME(doorbell_test),
703+
#endif
702704
NULL
703705
};

components/TARGET_PSA/TARGET_TFM/mbed_lib.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"rot_pool_size": {
1818
"help": "maximum number of RoT services allowed",
1919
"macro_name": "TFM_SPM_MAX_ROT_SERV_NUM",
20-
"value": 30
20+
"value": 32
2121
},
2222
"message_pool_size": {
2323
"help": "maximum number of active messages allowed",

0 commit comments

Comments
 (0)