int main(int argc, char *argv[]) { int lc; tst_parse_opts(argc, argv, options, NULL); setup(); for (lc = 0; TEST_LOOPING(lc); lc++) { tst_count = 0; test_bad_fd(); test_invalid_fd(); } cleanup(); tst_exit(); }
int main(int argc, char *argv[]) { char *msg; int lc; msg = parse_opts(argc, argv, options, NULL); if (msg != NULL) tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg); setup(); for (lc = 0; TEST_LOOPING(lc); lc++) { Tst_count = 0; test_bad_fd(); test_invalid_fd(); } cleanup(); tst_exit(); }