Skip to content

Commit 1650a92

Browse files
author
Nir Sonnenschein
committed
add main functions to each compliance test
add main function to each compliance test , moving shared code to a common file
1 parent eae1252 commit 1650a92

File tree

55 files changed

+612
-0
lines changed

Some content is hidden

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

55 files changed

+612
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#include "val_interfaces.h"
2+
#include "pal_mbed_os_crypto.h"
3+
4+
void test_entry_a001(val_api_t *val_api, psa_api_t *psa_api);
5+
6+
int main(void)
7+
{
8+
test_start(test_entry_a001);
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#include "val_interfaces.h"
2+
#include "pal_mbed_os_crypto.h"
3+
4+
void test_entry_c001(val_api_t *val_api, psa_api_t *psa_api);
5+
6+
int main(void)
7+
{
8+
test_start(test_entry_c001);
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#include "val_interfaces.h"
2+
#include "pal_mbed_os_crypto.h"
3+
4+
void test_entry_c002(val_api_t *val_api, psa_api_t *psa_api);
5+
6+
int main(void)
7+
{
8+
test_start(test_entry_c002);
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#include "val_interfaces.h"
2+
#include "pal_mbed_os_crypto.h"
3+
4+
void test_entry_c003(val_api_t *val_api, psa_api_t *psa_api);
5+
6+
int main(void)
7+
{
8+
test_start(test_entry_c003);
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#include "val_interfaces.h"
2+
#include "pal_mbed_os_crypto.h"
3+
4+
void test_entry_c004(val_api_t *val_api, psa_api_t *psa_api);
5+
6+
int main(void)
7+
{
8+
test_start(test_entry_c004);
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#include "val_interfaces.h"
2+
#include "pal_mbed_os_crypto.h"
3+
4+
void test_entry_c005(val_api_t *val_api, psa_api_t *psa_api);
5+
6+
int main(void)
7+
{
8+
test_start(test_entry_c005);
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#include "val_interfaces.h"
2+
#include "pal_mbed_os_crypto.h"
3+
4+
void test_entry_c006(val_api_t *val_api, psa_api_t *psa_api);
5+
6+
int main(void)
7+
{
8+
test_start(test_entry_c006);
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#include "val_interfaces.h"
2+
#include "pal_mbed_os_crypto.h"
3+
4+
void test_entry_c007(val_api_t *val_api, psa_api_t *psa_api);
5+
6+
int main(void)
7+
{
8+
test_start(test_entry_c007);
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#include "val_interfaces.h"
2+
#include "pal_mbed_os_crypto.h"
3+
4+
void test_entry_c008(val_api_t *val_api, psa_api_t *psa_api);
5+
6+
int main(void)
7+
{
8+
test_start(test_entry_c008);
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#include "val_interfaces.h"
2+
#include "pal_mbed_os_crypto.h"
3+
4+
void test_entry_c009(val_api_t *val_api, psa_api_t *psa_api);
5+
6+
int main(void)
7+
{
8+
test_start(test_entry_c009);
9+
}

0 commit comments

Comments
 (0)