[asterisk-commits] tilghman: branch 1.6.2 r286024 - in /branches/1.6.2: ./ main/ tests/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Sep 10 13:30:24 CDT 2010


Author: tilghman
Date: Fri Sep 10 13:30:21 2010
New Revision: 286024

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=286024
Log:
Merged revisions 286023 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r286023 | tilghman | 2010-09-10 13:22:04 -0500 (Fri, 10 Sep 2010) | 2 lines
  
  Missing newline
........

Modified:
    branches/1.6.2/   (props changed)
    branches/1.6.2/main/test.c
    branches/1.6.2/tests/test_heap.c

Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: branches/1.6.2/main/test.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/main/test.c?view=diff&rev=286024&r1=286023&r2=286024
==============================================================================
--- branches/1.6.2/main/test.c (original)
+++ branches/1.6.2/main/test.c Fri Sep 10 13:30:21 2010
@@ -548,7 +548,7 @@
 	}
 
 	if (test->info.category[0] != '/' || test->info.category[strlen(test->info.category) - 1] != '/') {
-		ast_log(LOG_WARNING, "Test category is missing a leading or trailing backslash for test %s%s",
+		ast_log(LOG_WARNING, "Test category is missing a leading or trailing backslash for test %s%s\n",
 				test->info.category, test->info.name);
 	}
 

Modified: branches/1.6.2/tests/test_heap.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/tests/test_heap.c?view=diff&rev=286024&r1=286023&r2=286024
==============================================================================
--- branches/1.6.2/tests/test_heap.c (original)
+++ branches/1.6.2/tests/test_heap.c Fri Sep 10 13:30:21 2010
@@ -68,7 +68,7 @@
 	switch (cmd) {
 	case TEST_INIT:
 		info->name = "heap_test_1";
-		info->category = "main/heap/";
+		info->category = "/main/heap/";
 		info->summary = "push and pop elements";
 		info->description = "Push a few elements onto a heap and make sure that they come back off in the right order.";
 		return AST_TEST_NOT_RUN;
@@ -129,7 +129,7 @@
 	switch (cmd) {
 	case TEST_INIT:
 		info->name = "heap_test_2";
-		info->category = "main/heap/";
+		info->category = "/main/heap/";
 		info->summary = "load test";
 		info->description =
 				"Push one hundred thousand random elements on to a heap, "
@@ -204,7 +204,7 @@
 	switch (cmd) {
 	case TEST_INIT:
 		info->name = "heap_test_3";
-		info->category = "main/heap/";
+		info->category = "/main/heap/";
 		info->summary = "random element removal test";
 		info->description =
 			"Push a hundred thousand random elements on to a heap, "




More information about the asterisk-commits mailing list