[cairo-commit] test/cairo-test-runner.c

Andrea Canciani ranma42 at kemper.freedesktop.org
Wed Jun 16 23:46:34 PDT 2010


 test/cairo-test-runner.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit cb28e0bfeb47a72f14ee42f161ebf6b5eb61e76b
Author: Andrea Canciani <ranma42 at gmail.com>
Date:   Thu Jun 17 08:42:39 2010 +0200

    test: correct options in getopt call
    
    'k' was missing and 't' was present but unhandled. Options have been
    reordered according to the "USAGE" ordering.

diff --git a/test/cairo-test-runner.c b/test/cairo-test-runner.c
index 207ad60..5aea643 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;
 


More information about the cairo-commit mailing list