mirror of https://github.com/ARMmbed/mbed-os.git
24 lines
540 B
C
24 lines
540 B
C
#include "val_interfaces.h"
|
|
#include "pal_mbed_os_intf.h"
|
|
#include "lifecycle.h"
|
|
|
|
#ifndef PS_ALLOW_ENTIRE_STORAGE_FILL
|
|
#error [NOT_SUPPORTED] Test is too long for CI, thus always fails on timeout.
|
|
#endif
|
|
|
|
#ifdef ITS_TEST
|
|
void test_entry_s003(val_api_t *val_api, psa_api_t *psa_api);
|
|
#elif PS_TEST
|
|
void test_entry_p003(val_api_t *val_api, psa_api_t *psa_api);
|
|
#endif
|
|
|
|
int main(void)
|
|
{
|
|
#ifdef ITS_TEST
|
|
test_start(test_entry_s003, COMPLIANCE_TEST_STORAGE);
|
|
#elif PS_TEST
|
|
test_start(test_entry_p003, COMPLIANCE_TEST_STORAGE);
|
|
#endif
|
|
|
|
}
|