Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Missed a few things in the last patch.
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbens committed Aug 4, 2009
1 parent 7cb5511 commit 2599df2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/automated/testsdl.c
Expand Up @@ -46,7 +46,7 @@ static void print_usage( const char *name )
{
printf("Usage: %s [OPTIONS]\n", name);
printf("Options are:\n");
printf(" --manual enables tests that require user interaction\n");
printf(" -m, --manual enables tests that require user interaction\n");
printf(" --noplatform do not run the platform tests\n");
printf(" --norwops do not run the rwops tests\n");
printf(" --nosurface do not run the surface tests\n");
Expand All @@ -63,7 +63,7 @@ static void print_usage( const char *name )
static void parse_options( int argc, char *argv[] )
{
static struct option long_options[] = {
{ "manual", no_argument, 0, 0 },
{ "manual", no_argument, 0, 'm' },
{ "noplatform", no_argument, 0, 0 },
{ "norwops", no_argument, 0, 0 },
{ "nosurface", no_argument, 0, 0 },
Expand Down Expand Up @@ -97,6 +97,10 @@ static void parse_options( int argc, char *argv[] )
run_render = 0;
break;

/* Manual. */
case 'm':
run_manual = 1;
break;

/* Verbosity. */
case 'v':
Expand Down

0 comments on commit 2599df2

Please sign in to comment.