[asterisk-commits] elguero: trunk r362682 - in /trunk: ./ tests/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Apr 19 16:14:39 CDT 2012
Author: elguero
Date: Thu Apr 19 16:14:35 2012
New Revision: 362682
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=362682
Log:
Add leading and trailing backslashes
A couple of unit tests did not have have leading or trailing backslashes when
setting their test category resulting in a warning message being displayed.
Added the backslash where needed.
........
Merged revisions 362680 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........
Merged revisions 362681 from http://svn.asterisk.org/svn/asterisk/branches/10
Modified:
trunk/ (props changed)
trunk/tests/test_linkedlists.c
trunk/tests/test_poll.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-10-merged' - no diff available.
Modified: trunk/tests/test_linkedlists.c
URL: http://svnview.digium.com/svn/asterisk/trunk/tests/test_linkedlists.c?view=diff&rev=362682&r1=362681&r2=362682
==============================================================================
--- trunk/tests/test_linkedlists.c (original)
+++ trunk/tests/test_linkedlists.c Thu Apr 19 16:14:35 2012
@@ -137,7 +137,7 @@
switch (cmd) {
case TEST_INIT:
info->name = "ll_tests";
- info->category = "/main/linkedlists";
+ info->category = "/main/linkedlists/";
info->summary = "single linked list unit test";
info->description =
"Test the single linked list API";
@@ -348,7 +348,7 @@
switch (cmd) {
case TEST_INIT:
info->name = "double_ll_tests";
- info->category = "/main/linkedlists";
+ info->category = "/main/linkedlists/";
info->summary = "double linked list unit test";
info->description =
"Test the double linked list API";
Modified: trunk/tests/test_poll.c
URL: http://svnview.digium.com/svn/asterisk/trunk/tests/test_poll.c?view=diff&rev=362682&r1=362681&r2=362682
==============================================================================
--- trunk/tests/test_poll.c (original)
+++ trunk/tests/test_poll.c Thu Apr 19 16:14:35 2012
@@ -85,7 +85,7 @@
switch (cmd) {
case TEST_INIT:
info->name = "poll_test";
- info->category = "main/poll/";
+ info->category = "/main/poll/";
info->summary = "unit test for the ast_poll() API";
info->description =
"Verifies behavior for the ast_poll() API call\n";
More information about the asterisk-commits
mailing list