[asterisk-commits] dvossel: trunk r243242 - /trunk/main/test.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Jan 26 11:40:05 CST 2010


Author: dvossel
Date: Tue Jan 26 11:40:02 2010
New Revision: 243242

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=243242
Log:
modify 'test show registered' cli output format

In order to improve readability, the output from 'test show
registered' has been modified to truncate fields to fit within
the format output if they are over a certain length.


Modified:
    trunk/main/test.c

Modified: trunk/main/test.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/test.c?view=diff&rev=243242&r1=243241&r2=243242
==============================================================================
--- trunk/main/test.c (original)
+++ trunk/main/test.c Tue Jan 26 11:40:02 2010
@@ -570,7 +570,7 @@
 /* CLI commands */
 static char *test_cli_show_registered(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
 {
-#define FORMAT "%-15s %-20s %-30s %-10s\n"
+#define FORMAT "%-20.20s %-20.20s %-30.30s %-10.10s\n"
 	static const char * const option1[] = { "all", "category", NULL };
 	static const char * const option2[] = { "name", NULL };
 	struct ast_test *test = NULL;
@@ -681,7 +681,7 @@
 
 static char *test_cli_show_results(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
 {
-#define FORMAT_RES_ALL "%s%s %-15s %-20s %-30s\n"
+#define FORMAT_RES_ALL "%s%s %-20.20s %-20.20s %-30.30s\n"
 	static const char * const option1[] = { "all", "failed", "passed", NULL };
 	char result_buf[32] = { 0 };
 	struct ast_test *test = NULL;




More information about the asterisk-commits mailing list