From: Michael L. Young Date: Thu, 19 Apr 2012 21:05:54 +0000 (+0000) Subject: Add leading and trailing backslashes X-Git-Tag: 1.8.13.0-rc1~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e49fcbcb048e9d705b74858e0e5d2e3c542ca2df;p=thirdparty%2Fasterisk.git 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. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@362680 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/tests/test_linkedlists.c b/tests/test_linkedlists.c index 2d816945cc..f8fee9b9ef 100644 --- a/tests/test_linkedlists.c +++ b/tests/test_linkedlists.c @@ -85,7 +85,7 @@ AST_TEST_DEFINE(single_ll_tests) 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"; diff --git a/tests/test_poll.c b/tests/test_poll.c index 32e48e2e60..755bb0f9e3 100644 --- a/tests/test_poll.c +++ b/tests/test_poll.c @@ -85,7 +85,7 @@ AST_TEST_DEFINE(poll_test) 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";