test: correct options in getopt call

'k' was missing and 't' was present but unhandled. Options have been
reordered according to the "USAGE" ordering.
This commit is contained in:
Andrea Canciani 2010-06-17 08:42:39 +02:00
parent 3cd0755932
commit cb28e0bfeb

View file

@ -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;