From ae2157fa45e74b778a3543b2c5f8f3a60bd35de5 Mon Sep 17 00:00:00 2001 From: "17:58:18 Tim Janik" Date: Wed, 5 Dec 2007 16:56:05 +0000 Subject: added -m=thorough support to gtester. 2007-12-05 17:58:18 Tim Janik * glib/gtester.c: added -m=thorough support to gtester. svn path=/trunk/; revision=6053 --- glib/gtester.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'glib/gtester.c') 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) { -- cgit v1.2.1