diff options
author | Thomas Wood <thomas.wood@intel.com> | 2015-02-18 16:19:59 +0000 |
---|---|---|
committer | Thomas Wood <thomas.wood@intel.com> | 2015-02-25 16:48:25 +0000 |
commit | 8fb19782f82f25249aaed0ff0e5fa6601dbb0e9d (patch) | |
tree | 803568509acd7bfc35f9596cf3db1a59937c2ed4 /tests/pm_rpm.c | |
parent | 55cc132b3219fbbf8c5705c674ef0f9a9b53d593 (diff) |
lib: remove handled option arguments from argv
Remove options from argv that have been handled by getopt to allow
additional non-option parameters to be processed in the test application.
This fixes issues when using options such as --debug with tests that accept
additional non-option parameters.
Signed-off-by: Thomas Wood <thomas.wood@intel.com>
Diffstat (limited to 'tests/pm_rpm.c')
-rw-r--r-- | tests/pm_rpm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pm_rpm.c b/tests/pm_rpm.c index 84254b79..c2847d01 100644 --- a/tests/pm_rpm.c +++ b/tests/pm_rpm.c @@ -1811,7 +1811,7 @@ int main(int argc, char *argv[]) { 0, 0, 0, 0 } }; - igt_subtest_init_parse_opts(argc, argv, "", long_options, + igt_subtest_init_parse_opts(&argc, argv, "", long_options, help_str, opt_handler); /* Skip instead of failing in case the machine is not prepared to reach |