[test-results] [Bamboo] Asterisk Testing > Asterisk 11 Branch > #129 has FAILED (1 tests failed, no failures were new). Change made by rmudgett.

Bamboo bamboo at asterisk.org
Sat Oct 6 04:58:48 CDT 2012


-----------------------------------------------------------------------
Asterisk Testing > Asterisk 11 Branch > #129 failed.
-----------------------------------------------------------------------
Code has been updated by rmudgett.
1/288 tests failed, no failures were new.

http://bamboo.asterisk.org/browse/TESTING-AST11BRANCH-129/


--------------
Failing Jobs
--------------
  - Asterisk CentOS 6 64-Bit (CentOS 6): 1 of 288 tests failed.



--------------
Code Changes
--------------
rmudgett (374538):

>Merged revisions 374515-374535 from
>https://origsvn.digium.com/svn/asterisk/be/branches/C.3-bier
>
>................
>  r374515 | rmudgett | 2012-10-04 17:52:36 -0500 (Thu, 04 Oct 2012) | 10 lines
>
>  chan_misdn: Remove some deadcode
>
>  * Made setup_bc() static.
>
>  Patches:
>	patch1_unused-code.diff (license #6372) patch uploaded by Guenther Kelleter
>	Modified
>
>  JIRA ABE-2882
>
>................
>  r374516 | rmudgett | 2012-10-04 18:01:01 -0500 (Thu, 04 Oct 2012) | 7 lines
>
>  chan_misdn: Remove unused bchan states
>
>  Patches:
>	patch2_unused-states.diff (license #6372) patch uploaded by Guenther Kelleter
>
>  JIRA ABE-2882
>
>................
>  r374517 | rmudgett | 2012-10-04 18:17:51 -0500 (Thu, 04 Oct 2012) | 16 lines
>
>  chan_misdn: Remove unnecessary null pointer checks and checks for stack->nt
>
>  * cleanup_bc() is always called with valid bc (or it would've crashed
>  before).
>
>  * Value of stack->nt is known in advance at some places.
>
>  * Rename handle_event() to handle_event_te(), handle_frm() to
>  handle_frm_te().
>
>  Patches:
>	patch3_checks.diff (license #6372) patch uploaded by Guenther Kelleter
>	Modified
>
>  JIRA ABE-2882
>
>................
>  r374518 | rmudgett | 2012-10-04 18:21:59 -0500 (Thu, 04 Oct 2012) | 7 lines
>
>  chan_misdn: Fix spelling in log messages
>
>  Patches:
>	patch4_spelling.diff (license #6372) patch uploaded by Guenther Kelleter
>
>  JIRA ABE-2882
>
>................
>  r374519 | rmudgett | 2012-10-04 18:31:59 -0500 (Thu, 04 Oct 2012) | 15 lines
>
>  chan_misdn: Don't cleanup a bc twice.
>
>  In handle_frm_te() after calling misdn_lib_send_event(bc,
>  EVENT_RELEASE_COMPLETE) bc is emptied, cleaned and set not in use,
>  although misdn_lib_send_event() already did the same.  This is bad.  When
>  it's not in use we are not allowed to touch it.
>
>  * Moved log message in front of the resulting actions and fixed it to
>  match the case.
>
>  Patches:
>	patch5_bccleanup.diff (license #6372) patch uploaded by Guenther Kelleter
>
>  JIRA ABE-2882
>
>................
>  r374520 | rmudgett | 2012-10-04 18:43:56 -0500 (Thu, 04 Oct 2012) | 12 lines
>
>  chan_misdn: Fix memory leaks, bc, chan not cleaned up etc., really bad stuff.
>
>  * Fix return codes of cb_events() for EVENT_SETUP to use caller's cleanup
>  mechanisms.
>
>  * Move cl_queue_chan() call after bearer check.
>
>  Patches:
>	patch6_leaks.diff (license #6372) patch uploaded by Guenther Kelleter
>
>  JIRA ABE-2882
>
>................
>  r374521 | rmudgett | 2012-10-04 18:48:38 -0500 (Thu, 04 Oct 2012) | 11 lines
>
>  chan_misdn: We must initialize cause on sending a DISCONNECT.
>
>  We must initialize cause on sending a DISCONNECT, so it is later correctly
>  indicated to ast_channel in case the answer (RELEASE/RELEASE_COMPLETE)
>  does not include one.
>
>  Patches:
>	patch7_hangupcause.diff (license #6372) patch uploaded by Guenther Kelleter
>
>  JIRA ABE-2882
>
>................
>  r374522 | rmudgett | 2012-10-04 19:03:56 -0500 (Thu, 04 Oct 2012) | 7 lines
>
>  chan_misdn: Remove unused code for upqueue
>
>  Patches:
>	patch8_unused-upqueue.diff (license #6372) patch uploaded by Guenther Kelleter
>
>  JIRA ABE-2882
>
>................
>  r374523 | rmudgett | 2012-10-04 19:11:50 -0500 (Thu, 04 Oct 2012) | 7 lines
>
>  chan_misdn: Improve debugging (port number, messages fixed, dups removed)
>
>  Patches:
>	patch9_debug.diff (license #6372) patch uploaded by Guenther Kelleter
>
>  JIRA ABE-2882
>
>................
>  r374533 | rmudgett | 2012-10-05 12:17:18 -0500 (Fri, 05 Oct 2012) | 8 lines
>
>  chan_misdn: Better debug: we can print_bc_info even if there's no ast leg.
>
>  Patches:
>	patch10_debug-bc-2.diff (license #6372) patch uploaded by Guenther Kelleter
>	Modified.
>
>  JIRA ABE-2882
>
>................
>  r374534 | rmudgett | 2012-10-05 12:34:10 -0500 (Fri, 05 Oct 2012) | 16 lines
>
>  chan_misdn: setup_bc() is called too early for an incoming SETUP on TE.
>
>  This prevents the B channel from being setup for HDLC mode when requested
>  by the bearer capability and config option hdlc=yes.  It violates
>  ETS300102 Ch.5.2.3.2: "The user, in any case, must not connect to the
>  channel until a CONNECT ACKNOWLEDGE message has been received."
>
>  * Call setup_bc() on receipt of CONNECT_ACKNOWLEGDE for PTMP, and on first
>  response to SETUP for PTP.
>
>  Patches:
>	abe-2881-2.diff (license #6372) patch uploaded by Guenther Kelleter
>	Modified.
>
>  JIRA ABE-2881
>
>................
>  r374535 | rmudgett | 2012-10-05 12:41:05 -0500 (Fri, 05 Oct 2012) | 2 lines
>
>  chan_misdn: Remove some more deadcode.
>
>................
>........
>
>Merged revisions 374536 from http://svn.asterisk.org/svn/asterisk/branches/1.8
>........
>
>Merged revisions 374537 from http://svn.asterisk.org/svn/asterisk/branches/10
>



--------------
Tests
--------------
Existing Test Failures (1)
   - AsteriskTestSuite: S/channels/ s i p/sip outbound address

--
This message is automatically generated by Atlassian Bamboo
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/test-results/attachments/20121006/c6605b96/attachment-0001.htm>


More information about the Test-results mailing list