summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Canciani <ranma42@gmail.com>2010-06-17 08:42:39 +0200
committerAndrea Canciani <ranma42@gmail.com>2010-06-17 08:42:39 +0200
commitcb28e0bfeb47a72f14ee42f161ebf6b5eb61e76b (patch)
tree2ba8941fe6793a231f4f8154892c15dc46f2a622
parent3cd07559328b60e3da85debb805cb4a3fc4abc22 (diff)
test: correct options in getopt call
'k' was missing and 't' was present but unhandled. Options have been reordered according to the "USAGE" ordering.
-rw-r--r--test/cairo-test-runner.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cairo-test-runner.c b/test/cairo-test-runner.c
index 207ad607..5aea6432 100644
--- a/test/cairo-test-runner.c
+++ b/test/cairo-test-runner.c
@@ -349,7 +349,7 @@ _parse_cmdline (cairo_test_runner_t *runner, int *argc, char **argv[])
int c;
while (1) {
- c = _cairo_getopt (*argc, *argv, ":aflstx");
+ c = _cairo_getopt (*argc, *argv, ":afkxsl");
if (c == -1)
break;