From cb28e0bfeb47a72f14ee42f161ebf6b5eb61e76b Mon Sep 17 00:00:00 2001 From: Andrea Canciani Date: Thu, 17 Jun 2010 08:42:39 +0200 Subject: test: correct options in getopt call 'k' was missing and 't' was present but unhandled. Options have been reordered according to the "USAGE" ordering. --- test/cairo-test-runner.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3