summaryrefslogtreecommitdiff
path: root/lib/tests/igt_no_subtest.c
diff options
context:
space:
mode:
authorThomas Wood <thomas.wood@intel.com>2015-02-18 16:19:59 +0000
committerThomas Wood <thomas.wood@intel.com>2015-02-25 16:48:25 +0000
commit8fb19782f82f25249aaed0ff0e5fa6601dbb0e9d (patch)
tree803568509acd7bfc35f9596cf3db1a59937c2ed4 /lib/tests/igt_no_subtest.c
parent55cc132b3219fbbf8c5705c674ef0f9a9b53d593 (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 'lib/tests/igt_no_subtest.c')
-rw-r--r--lib/tests/igt_no_subtest.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/tests/igt_no_subtest.c b/lib/tests/igt_no_subtest.c
index 47f15fce..1ae62cfd 100644
--- a/lib/tests/igt_no_subtest.c
+++ b/lib/tests/igt_no_subtest.c
@@ -31,8 +31,9 @@ int main(int argc, char **argv)
{
char prog[] = "igt_no_exit";
char *fake_argv[] = {prog};
+ int fake_argc = 1;
- igt_subtest_init(1, fake_argv);
+ igt_subtest_init(fake_argc, fake_argv);
igt_exit();
}