1*e3723e1fSApple OSS Distributions #include <darwintest.h> 2*e3723e1fSApple OSS Distributions #include <stdio.h> 3*e3723e1fSApple OSS Distributions #include <mach/mach.h> 4*e3723e1fSApple OSS Distributions #include <mach/host_priv.h> 5*e3723e1fSApple OSS Distributions 6*e3723e1fSApple OSS Distributions 7*e3723e1fSApple OSS Distributions T_DECL(regression_17272465, 8*e3723e1fSApple OSS Distributions "Test for host_set_special_port Mach port over-release, rdr: 17272465", T_META_CHECK_LEAKS(false)) 9*e3723e1fSApple OSS Distributions { 10*e3723e1fSApple OSS Distributions kern_return_t kr; 11*e3723e1fSApple OSS Distributions mach_port_t port = MACH_PORT_NULL; 12*e3723e1fSApple OSS Distributions 13*e3723e1fSApple OSS Distributions T_SETUPBEGIN; 14*e3723e1fSApple OSS Distributions T_QUIET; 15*e3723e1fSApple OSS Distributions T_ASSERT_MACH_SUCCESS(mach_port_allocate(mach_task_self(), MACH_PORT_RIGHT_RECEIVE, &port), NULL); 16*e3723e1fSApple OSS Distributions T_QUIET; 17*e3723e1fSApple OSS Distributions T_ASSERT_MACH_SUCCESS(mach_port_insert_right(mach_task_self(), port, port, MACH_MSG_TYPE_MAKE_SEND), NULL); 18*e3723e1fSApple OSS Distributions T_SETUPEND; 19*e3723e1fSApple OSS Distributions 20*e3723e1fSApple OSS Distributions (void)host_set_special_port(mach_host_self(), 30, port); 21*e3723e1fSApple OSS Distributions (void)host_set_special_port(mach_host_self(), 30, port); 22*e3723e1fSApple OSS Distributions (void)host_set_special_port(mach_host_self(), 30, port); 23*e3723e1fSApple OSS Distributions 24*e3723e1fSApple OSS Distributions T_PASS("No panic occurred"); 25*e3723e1fSApple OSS Distributions } 26