testdisplay: set a non-zero exit code if getopt detected an error
authorThomas Wood <thomas.wood@intel.com>
Fri, 25 Jul 2014 14:35:36 +0000 (15:35 +0100)
committerThomas Wood <thomas.wood@intel.com>
Wed, 30 Jul 2014 10:13:13 +0000 (11:13 +0100)
Signed-off-by: Thomas Wood <thomas.wood@intel.com>
tests/testdisplay.c

index 3bf6133..a187c16 100644 (file)
@@ -672,7 +672,7 @@ static void __attribute__((noreturn)) usage(char *name)
        igt_info("\t\t<vdisp>,<vsync-start>,<vsync-end>,<vtotal>\n");
        igt_info("\t\ttest force mode\n");
        igt_info("\tDefault is to test all modes.\n");
-       exit(0);
+       exit((optopt) ? -1 : 0);
 }
 
 #define dump_resource(res) if (res) dump_##res()