TEST: added psa_its_set expected failure test
Signed-off-by: pespacek <peter.spacek@silabs.com>
This commit is contained in:
parent
e990100ddb
commit
d62e906b1c
3
ChangeLog.d/PSA-test-suites-NOT-using-UID-0.txt
Normal file
3
ChangeLog.d/PSA-test-suites-NOT-using-UID-0.txt
Normal file
@ -0,0 +1,3 @@
|
||||
Bugfix
|
||||
* Fix unit tests that used 0 as the file UID. This failed on some
|
||||
implementations of PSA ITS. Fixes #3838.
|
@ -285,3 +285,16 @@ exit:
|
||||
cleanup( );
|
||||
}
|
||||
/* END_CASE */
|
||||
|
||||
/* BEGIN_CASE */
|
||||
void set_fail( int uid_arg, data_t *data,
|
||||
int expected_status )
|
||||
{
|
||||
psa_storage_uid_t uid = uid_arg;
|
||||
TEST_ASSERT( psa_its_set_wrap( uid, data->len, data->x, 0 ) ==
|
||||
(psa_status_t) expected_status );
|
||||
|
||||
exit:
|
||||
cleanup( );
|
||||
}
|
||||
/* END_CASE */
|
||||
|
Loading…
Reference in New Issue
Block a user