mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-05-30 15:14:56 +08:00
45 lines
912 B
C
45 lines
912 B
C
#include <stdio.h>
|
|
|
|
#include <CUnit/CUnit.h>
|
|
#include <CUnit/Basic.h>
|
|
|
|
/* #include <coap.h> */
|
|
|
|
#include "test_uri.h"
|
|
#include "test_options.h"
|
|
#include "test_pdu.h"
|
|
#include "test_error_response.h"
|
|
#include "test_sendqueue.h"
|
|
#include "test_wellknown.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;
|
|
}
|
|
|
|
t_init_uri_tests();
|
|
t_init_option_tests();
|
|
t_init_pdu_tests();
|
|
t_init_error_response_tests();
|
|
t_init_sendqueue_tests();
|
|
t_init_wellknown_tests();
|
|
|
|
CU_basic_set_mode(run_mode);
|
|
result = CU_basic_run_tests();
|
|
|
|
CU_cleanup_registry();
|
|
|
|
return result;
|
|
}
|