summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authormonty@mysql.com <>2004-11-12 21:27:52 +0200
committermonty@mysql.com <>2004-11-12 21:27:52 +0200
commit63da07508142f4819ecee82c47152ac474a3424f (patch)
treefb77a100a6fc8913c65c231f1013a50f49fd2d43 /tests
parente0f1e6af365a8983da84c64484199a1226f95508 (diff)
parentdc667223508fdfb970219c7d931e4f6c35392550 (diff)
downloadmariadb-git-63da07508142f4819ecee82c47152ac474a3424f.tar.gz
Merge with 4.1 to get latest fix to client_test.c
Diffstat (limited to 'tests')
-rw-r--r--tests/client_test.c24
1 files changed, 11 insertions, 13 deletions
diff --git a/tests/client_test.c b/tests/client_test.c
index c68e775241b..39969120608 100644
--- a/tests/client_test.c
+++ b/tests/client_test.c
@@ -12130,11 +12130,11 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
return 0;
}
-static void get_options(int argc, char **argv)
+static void get_options(int *argc, char ***argv)
{
int ho_error;
- if ((ho_error= handle_options(&argc, &argv, client_test_long_options,
+ if ((ho_error= handle_options(argc, argv, client_test_long_options,
get_one_option)))
exit(ho_error);
@@ -12177,7 +12177,7 @@ int main(int argc, char **argv)
load_defaults("my", client_test_load_default_groups, &argc, &argv);
defaults_argv= argv;
- get_options(argc, argv);
+ get_options(&argc, &argv);
client_connect(); /* connect to server */
@@ -12187,30 +12187,28 @@ int main(int argc, char **argv)
/* Start of tests */
test_count= 1;
start_time= time((time_t *)0);
- int i, name_ok;
- if (!argv[1])
+ if (!argc)
{
for (fptr= my_tests; fptr->name; fptr++)
(*fptr->function)();
}
else
{
- for (i= 1; argv[i]; i++)
+ for ( ; *argv ; argv++)
{
- name_ok= 0;
for (fptr= my_tests; fptr->name; fptr++)
{
- if (!strcmp(fptr->name, argv[i]))
+ if (!strcmp(fptr->name, *argv))
{
- name_ok= 1;
(*fptr->function)();
+ break;
}
}
- if (!name_ok)
+ if (!fptr->name)
{
- printf("\n\nGiven test not found: '%s'\n", argv[i]);
- printf("See legal test names with %s -T\n\nAborting!\n",
- my_progname);
+ fprintf(stderr, "\n\nGiven test not found: '%s'\n", *argv);
+ fprintf(stderr, "See legal test names with %s -T\n\nAborting!\n",
+ my_progname);
client_disconnect();
free_defaults(defaults_argv);
exit(1);