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