summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2015-02-05 14:10:25 -0500
committerEdward Thomson <ethomson@edwardthomson.com>2015-02-05 14:10:25 -0500
commitbebd2017370294a468ed6cf02c9de35973a9e4f7 (patch)
treebfa63d933d8dcf3de7aa74cc5ec328e3e370c8ad
parent9bf5bd7cd89502826cc0223ec43aba15ad30fac7 (diff)
parent83276dccbef0cc1d70ec45c086e38a3e232e2b32 (diff)
downloadlibgit2-bebd2017370294a468ed6cf02c9de35973a9e4f7.tar.gz
Merge pull request #2881 from ethomson/clar
Update clar to d17c7f6
-rw-r--r--tests/clar.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/clar.c b/tests/clar.c
index 51f163526..17f767a02 100644
--- a/tests/clar.c
+++ b/tests/clar.c
@@ -269,6 +269,7 @@ clar_usage(const char *arg)
printf(" -sname\tRun only the suite with `name` (can go to individual test name)\n");
printf(" -iname\tInclude the suite with `name`\n");
printf(" -xname\tExclude the suite with `name`\n");
+ printf(" -v \tIncrease verbosity (show suite names)\n");
printf(" -q \tOnly report tests that had an error\n");
printf(" -Q \tQuit as soon as a test fails\n");
printf(" -l \tPrint suite names\n");
@@ -347,6 +348,10 @@ clar_parse_args(int argc, char **argv)
exit(0);
}
+ case 'v':
+ _clar.report_suite_names = 1;
+ break;
+
default:
clar_usage(argv[0]);
}