{
(void)fprintf(stderr, "usage: rmdir [-pv] directory ...\n");
exit(1);
exit(2);
}
invalid_usage_body()
atf_check -s not-exit:0 -e match:"$usage_output" rmdir -p
atf_check -s exit:2 -e match:"$usage_output" rmdir -p
atf_check -s not-exit:0 -e match:"$usage_output" rmdir -v
atf_check -s exit:2 -e match:"$usage_output" rmdir -v
atf_test_case no_arguments
no_arguments_body()
atf_check -s not-exit:0 -e match:"$usage_output" rmdir
atf_check -s exit:2 -e match:"$usage_output" rmdir
atf_init_test_cases()