int main(int argc, char *argv[]) { _cleanup_(sd_event_unrefp) sd_event *e; assert_se(sd_event_new(&e) >= 0); test_setup_logging(LOG_DEBUG); test_client_basic(e); test_option(e); test_option_status(e); test_advertise_option(e); test_client_solicit(e); return 0; }
int main(int argc, char *argv[]) { _cleanup_(sd_event_unrefp) sd_event *e; assert_se(sd_event_new(&e) >= 0); log_set_max_level(LOG_DEBUG); log_parse_environment(); log_open(); test_client_basic(e); test_option(e); test_advertise_option(e); test_client_solicit(e); return 0; }