summaryrefslogtreecommitdiff
path: root/glib/gtester.c
diff options
context:
space:
mode:
author17:58:18 Tim Janik <timj@imendio.com>2007-12-05 16:56:05 +0000
committerTim Janik <timj@src.gnome.org>2007-12-05 16:56:05 +0000
commitae2157fa45e74b778a3543b2c5f8f3a60bd35de5 (patch)
tree7ec8e7176dcb49906de363f0a717119bfc9a5761 /glib/gtester.c
parentd4bfa601f7af11c2ca7c3866e67d49e379d82aad (diff)
downloadglib-ae2157fa45e74b778a3543b2c5f8f3a60bd35de5.tar.gz
added -m=thorough support to gtester.
2007-12-05 17:58:18 Tim Janik <timj@imendio.com> * glib/gtester.c: added -m=thorough support to gtester. svn path=/trunk/; revision=6053
Diffstat (limited to 'glib/gtester.c')
-rw-r--r--glib/gtester.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/glib/gtester.c b/glib/gtester.c
index f3aaee959..499858fe8 100644
--- a/glib/gtester.c
+++ b/glib/gtester.c
@@ -410,7 +410,8 @@ usage (gboolean just_version)
g_print (" --g-fatal-warnings make warnings fatal (abort)\n");
g_print (" -k, --keep-going continue running after tests failed\n");
g_print (" -l list paths of available test cases\n");
- g_print (" -m=perf, -m=slow, -m=quick run test cases in mode perf, slow or quick (default)\n");
+ g_print (" -m=perf, -m=slow, -m=quick -m=thorough\n");
+ g_print (" run test cases in mode perf, slow/thorough or quick (default)\n");
g_print (" -p=TESTPATH only start test cases matching TESTPATH\n");
g_print (" --seed=SEEDSTRING start all tests with random number seed SEEDSTRING\n");
g_print (" -o=LOGFILE write the test log to LOGFILE\n");
@@ -508,7 +509,7 @@ parse_args (gint *argc_p,
}
if (strcmp (mode, "perf") == 0)
subtest_mode_perf = TRUE;
- else if (strcmp (mode, "slow") == 0)
+ else if (strcmp (mode, "slow") == 0 || strcmp (mode, "thorough") == 0)
subtest_mode_quick = FALSE;
else if (strcmp (mode, "quick") == 0)
{