int main(int argc, char *argv[]) { log_set_max_level(LOG_DEBUG); log_parse_environment(); log_open(); saved_argc = argc; saved_argv = argv; if (argc > 1) { pid_t pid = 0; (void) parse_pid(argv[1], &pid); test_get_process_comm(pid); } else { TEST_REQ_RUNNING_SYSTEMD(test_get_process_comm(1)); test_get_process_comm(getpid()); } test_pid_is_unwaited(); test_pid_is_alive(); test_personality(); test_get_process_cmdline_harder(); test_rename_process(); test_getpid_cached(); test_getpid_measure(); test_safe_fork(); test_pid_to_ptr(); test_ioprio_class_from_to_string(); return 0; }
int main(int argc, char *argv[]) { log_parse_environment(); log_open(); test_get_process_comm(); test_pid_is_unwaited(); test_pid_is_alive(); test_personality(); return 0; }
int main(int argc, char *argv[]) { log_parse_environment(); log_open(); if (argc > 1) { pid_t pid = 0; (void) parse_pid(argv[1], &pid); test_get_process_comm(pid); } else { test_get_process_comm(1); test_get_process_comm(getpid()); } test_pid_is_unwaited(); test_pid_is_alive(); test_personality(); test_get_process_cmdline_harder(); return 0; }