1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
#include <stdio.h>
#include <CUnit/CUnit.h>
#include <CUnit/Basic.h>
/* #include <coap.h> */
#include "test_uri.h"
#include "test_encode.h"
#include "test_options.h"
#include "test_pdu.h"
#include "test_error_response.h"
#include "test_session.h"
#include "test_sendqueue.h"
#include "test_wellknown.h"
#include "test_tls.h"
#include "libcoap.h"
#ifdef __GNUC__
#define UNUSED_PARAM __attribute__ ((unused))
#else /* not a GCC */
#define UNUSED_PARAM
#endif /* GCC */
int
main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) {
CU_ErrorCode result;
CU_BasicRunMode run_mode = CU_BRM_VERBOSE;
if (CU_initialize_registry() != CUE_SUCCESS) {
fprintf(stderr, "E: test framework initialization failed\n");
return -2;
}
coap_startup();
t_init_uri_tests();
t_init_encode_tests();
t_init_option_tests();
t_init_pdu_tests();
t_init_error_response_tests();
t_init_session_tests();
t_init_sendqueue_tests();
t_init_wellknown_tests();
t_init_tls_tests();
CU_basic_set_mode(run_mode);
result = CU_basic_run_tests();
CU_cleanup_registry();
coap_cleanup();
return result;
}
|