Skip to content

Commit 2982907

Browse files
Netanel GonenNir Sonnenschein
authored andcommitted
rework for mbed-os intf for ACK tests
-rework test wrapper functions to simplify test main -move greentea init before test setup code to avoid boards losing sync.
1 parent 16a59cb commit 2982907

File tree

59 files changed

+294
-244
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+294
-244
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#include "val_interfaces.h"
2-
#include "pal_mbed_os_crypto.h"
2+
#include "pal_mbed_os_intf.h"
33

44
void test_entry_a001(val_api_t *val_api, psa_api_t *psa_api);
55

66
int main(void)
77
{
8-
test_start(test_entry_a001);
8+
test_start(test_entry_a001, COMPLIANCE_TEST_ATTESTATION);
99
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#include "val_interfaces.h"
2-
#include "pal_mbed_os_crypto.h"
2+
#include "pal_mbed_os_intf.h"
33

44
void test_entry_c001(val_api_t *val_api, psa_api_t *psa_api);
55

66
int main(void)
77
{
8-
test_start(test_entry_c001);
8+
test_start(test_entry_c001, COMPLIANCE_TEST_CRYPTO);
99
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#include "val_interfaces.h"
2-
#include "pal_mbed_os_crypto.h"
2+
#include "pal_mbed_os_intf.h"
33

44
void test_entry_c002(val_api_t *val_api, psa_api_t *psa_api);
55

66
int main(void)
77
{
8-
test_start(test_entry_c002);
8+
test_start(test_entry_c002, COMPLIANCE_TEST_CRYPTO);
99
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#include "val_interfaces.h"
2-
#include "pal_mbed_os_crypto.h"
2+
#include "pal_mbed_os_intf.h"
33

44
void test_entry_c003(val_api_t *val_api, psa_api_t *psa_api);
55

66
int main(void)
77
{
8-
test_start(test_entry_c003);
8+
test_start(test_entry_c003, COMPLIANCE_TEST_CRYPTO);
99
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#include "val_interfaces.h"
2-
#include "pal_mbed_os_crypto.h"
2+
#include "pal_mbed_os_intf.h"
33

44
void test_entry_c004(val_api_t *val_api, psa_api_t *psa_api);
55

66
int main(void)
77
{
8-
test_start(test_entry_c004);
8+
test_start(test_entry_c004, COMPLIANCE_TEST_CRYPTO);
99
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#include "val_interfaces.h"
2-
#include "pal_mbed_os_crypto.h"
2+
#include "pal_mbed_os_intf.h"
33

44
void test_entry_c005(val_api_t *val_api, psa_api_t *psa_api);
55

66
int main(void)
77
{
8-
test_start(test_entry_c005);
8+
test_start(test_entry_c005, COMPLIANCE_TEST_CRYPTO);
99
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#include "val_interfaces.h"
2-
#include "pal_mbed_os_crypto.h"
2+
#include "pal_mbed_os_intf.h"
33

44
void test_entry_c006(val_api_t *val_api, psa_api_t *psa_api);
55

66
int main(void)
77
{
8-
test_start(test_entry_c006);
8+
test_start(test_entry_c006, COMPLIANCE_TEST_CRYPTO);
99
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#include "val_interfaces.h"
2-
#include "pal_mbed_os_crypto.h"
2+
#include "pal_mbed_os_intf.h"
33

44
void test_entry_c007(val_api_t *val_api, psa_api_t *psa_api);
55

66
int main(void)
77
{
8-
test_start(test_entry_c007);
8+
test_start(test_entry_c007, COMPLIANCE_TEST_CRYPTO);
99
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#include "val_interfaces.h"
2-
#include "pal_mbed_os_crypto.h"
2+
#include "pal_mbed_os_intf.h"
33

44
void test_entry_c008(val_api_t *val_api, psa_api_t *psa_api);
55

66
int main(void)
77
{
8-
test_start(test_entry_c008);
8+
test_start(test_entry_c008, COMPLIANCE_TEST_CRYPTO);
99
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#include "val_interfaces.h"
2-
#include "pal_mbed_os_crypto.h"
2+
#include "pal_mbed_os_intf.h"
33

44
void test_entry_c009(val_api_t *val_api, psa_api_t *psa_api);
55

66
int main(void)
77
{
8-
test_start(test_entry_c009);
8+
test_start(test_entry_c009, COMPLIANCE_TEST_CRYPTO);
99
}

0 commit comments

Comments
 (0)