aboutsummaryrefslogtreecommitdiffstats
path: root/tests
AgeCommit message (Collapse)AuthorFilesLines
2010-11-15Merged revisions 295026 via svnmerge from tilghman1-0/+191
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r295026 | tilghman | 2010-11-15 11:58:37 -0600 (Mon, 15 Nov 2010) | 2 lines Create test verifying results of expression parser ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@295062 f38db490-d61c-443f-a65b-d21fe96a405b
2010-09-10Merged revisions 286023 via svnmerge from tilghman1-3/+3
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 ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@286024 f38db490-d61c-443f-a65b-d21fe96a405b
2010-09-10Merged revisions 285889 via svnmerge from tilghman1-6/+0
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r285889 | tilghman | 2010-09-09 19:13:45 -0500 (Thu, 09 Sep 2010) | 7 lines Fix Mac OS X build. This also fixes a rather grievous calculation error for the offset of ast_fdset, which was masked on Linux and FreeBSD, because these platforms check the first 256 FDs regardless of the bitmask setting (due to backwards compatibility). ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@285930 f38db490-d61c-443f-a65b-d21fe96a405b
2010-09-09Fixes an issue with dialplan pattern matching where the specificity for ↵bbryant1-0/+253
pattern ranges and pattern special characters was inconsistent. (closes issue #16903) Reported by: Nick_Lewis Patches: pbx.c-specificity.patch uploaded by Nick Lewis (license 657) Tested by: Nick_Lewis git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@285710 f38db490-d61c-443f-a65b-d21fe96a405b
2010-06-28Backport applicable parts of test_astobj2 from trunk.russell1-0/+329
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@272882 f38db490-d61c-443f-a65b-d21fe96a405b
2010-06-25Backport unit test API from trunk.russell3-146/+172
Also, update existing test modules that were already in this branch but had been converted to the unit test API in trunk. Review: https://reviewboard.asterisk.org/r/748/ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@272531 f38db490-d61c-443f-a65b-d21fe96a405b
2010-06-10Merged revisions 269711 via svnmerge from russell1-1/+1
https://origsvn.digium.com/svn/asterisk/trunk ........ r269711 | russell | 2010-06-10 08:17:51 -0500 (Thu, 10 Jun 2010) | 2 lines Fix an off by one error that caused a unit test to occasionally crash. ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@269714 f38db490-d61c-443f-a65b-d21fe96a405b
2010-05-06Add test case that ensures the heap handles arbitrary removals properly.russell1-1/+90
(issue #17277) Reported by: cappucinoking Patches: test_heap.diff uploaded by cappucinoking (license 1036) Tested by: cappucinoking, russell git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@261499 f38db490-d61c-443f-a65b-d21fe96a405b
2010-03-23Merged revisions 254001 via svnmerge from tzafrir1-1/+1
http://svn.digium.com/svn/asterisk/trunk ........ r254001 | tzafrir | 2010-03-23 21:19:52 +0200 (Tue, 23 Mar 2010) | 2 lines Change the name of the category 'TEST' to match the name of the subdir ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@254131 f38db490-d61c-443f-a65b-d21fe96a405b
2009-04-10Merged revisions 187675 via svnmerge from russell2-0/+8
https://origsvn.digium.com/svn/asterisk/trunk ........ r187675 | russell | 2009-04-10 11:00:29 -0500 (Fri, 10 Apr 2009) | 2 lines Disable test modules by default. ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@187677 f38db490-d61c-443f-a65b-d21fe96a405b
2009-02-23Fix a regression in scheduler entry ordering, and add a regression test for it.russell1-2/+117
(closes issue #14522) Reported by: pj Tested by: russell git-svn-id: http://svn.digium.com/svn/asterisk/trunk@178022 f38db490-d61c-443f-a65b-d21fe96a405b
2009-02-17Use constants from inttypes.h to clear up 32-bit compilation errorsmmichelson1-2/+4
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@176706 f38db490-d61c-443f-a65b-d21fe96a405b
2009-02-17Significantly improve scheduler performance under high load.russell1-0/+130
This patch changes the scheduler to use a max-heap to store pending scheduler entries instead of a fully sorted doubly linked list. When the number of entries in the scheduler gets large, this will perform much better. For much more detailed information on this change, see the review request. Review: http://reviewboard.digium.com/r/160/ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@176639 f38db490-d61c-443f-a65b-d21fe96a405b
2009-02-17Add a test module for the heap implementation.russell1-0/+219
Review: http://reviewboard.digium.com/r/160/ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@176635 f38db490-d61c-443f-a65b-d21fe96a405b
2008-04-16Introducing doubly linked lists to trunk from branch team/murf/bug11210.murf1-0/+363
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@114172 f38db490-d61c-443f-a65b-d21fe96a405b
2008-01-03add some simple infrastructure for modules to be used for testing parts of ↵kpfleming2-0/+74
Asterisk git-svn-id: http://svn.digium.com/svn/asterisk/trunk@96272 f38db490-d61c-443f-a65b-d21fe96a405b