[asterisk-commits] elguero: branch 10 r362681 - in /branches/10: ./ tests/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Apr 19 16:11:38 CDT 2012
Author: elguero
Date: Thu Apr 19 16:11:35 2012
New Revision: 362681
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=362681
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
Modified:
branches/10/ (props changed)
branches/10/tests/test_linkedlists.c
branches/10/tests/test_poll.c
Propchange: branches/10/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.
Modified: branches/10/tests/test_linkedlists.c
URL: http://svnview.digium.com/svn/asterisk/branches/10/tests/test_linkedlists.c?view=diff&rev=362681&r1=362680&r2=362681
==============================================================================
--- branches/10/tests/test_linkedlists.c (original)
+++ branches/10/tests/test_linkedlists.c Thu Apr 19 16:11:35 2012
@@ -85,7 +85,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";
Modified: branches/10/tests/test_poll.c
URL: http://svnview.digium.com/svn/asterisk/branches/10/tests/test_poll.c?view=diff&rev=362681&r1=362680&r2=362681
==============================================================================
--- branches/10/tests/test_poll.c (original)
+++ branches/10/tests/test_poll.c Thu Apr 19 16:11: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