Branch data Line data Source code
1 : : #include "sute.h"
2 : : #include "test_libmem_all.h"
3 : : #include "test_librational_all.h"
4 : : #include "test_libsha512_all.h"
5 : : #include "test_libtestitall_all.h"
6 : :
7 : : /**
8 : : * @brief Run the test groups that belong to bundled libraries
9 : : * @details The main application test runner includes these checks so library
10 : : * behavior is verified together with the application that embeds it
11 : : *
12 : : * @return Return status for all bundled library test groups
13 : : */
14 : 1 : Return bundled_libraries(void)
15 : : {
16 : 1 : INITTEST;
17 : :
18 : 1 : SUTE(test_librational_all,"Testing of librational");
19 : 1 : SUTE(test_libsha512_all,"libsha512 public hashing behavior checks");
20 : 1 : SUTE(test_libmem_all,"Testing of libmem");
21 : 1 : SUTE(test_libtestitall_all,"Testing of libtestitall");
22 : :
23 : 1 : RETURN_STATUS;
24 : : }
|