[asterisk-commits] lmadsen: trunk r253205 - /trunk/main/test.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Mar 17 14:06:08 CDT 2010
Author: lmadsen
Date: Wed Mar 17 14:06:04 2010
New Revision: 253205
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=253205
Log:
main/test.c reports erroneous CLI message.
(closes issue #17051)
Reported by: Nick_Lewis
Modified:
trunk/main/test.c
Modified: trunk/main/test.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/test.c?view=diff&rev=253205&r1=253204&r2=253205
==============================================================================
--- trunk/main/test.c (original)
+++ trunk/main/test.c Wed Mar 17 14:06:04 2010
@@ -708,7 +708,7 @@
ast_cli(a->fd, "Running all available tests matching category %s\n\n", a->argv[3]);
test_execute_multiple(NULL, a->argv[3], a);
} else if (a->argc == 6) { /* run only a single test matching the category and name */
- ast_cli(a->fd, "Running all available tests matching category %s and name %s\n\n", a->argv[5], a->argv[3]);
+ ast_cli(a->fd, "Running all available tests matching category %s and name %s\n\n", a->argv[3], a->argv[5]);
test_execute_multiple(a->argv[5], a->argv[3], a);
} else {
return CLI_SHOWUSAGE;
More information about the asterisk-commits
mailing list