lib: don't ignore unknown options in multi-tests

None of the current tests have additional options that might make use of
any unknown options and igt_subtest_init_parse_opts is available that
integrates additional option parsing.

Signed-off-by: Thomas Wood <thomas.wood@intel.com>
This commit is contained in:
Thomas Wood 2014-07-18 17:17:34 +01:00
parent e2cef00896
commit 82b424a419

View File

@ -459,18 +459,7 @@ enum igt_log_level igt_log_level = IGT_LOG_INFO;
*/
void igt_subtest_init(int argc, char **argv)
{
int ret;
/* supress getopt errors about unknown options */
opterr = 0;
ret = igt_subtest_init_parse_opts(argc, argv, NULL, NULL, NULL, NULL);
if (ret < 0)
/* exit with no error for -h/--help */
exit(ret == -1 ? 0 : ret);
/* reset opt parsing */
optind = 1;
igt_subtest_init_parse_opts(argc, argv, NULL, NULL, NULL, NULL);
}
/**