[svn-commits] mmichelson: testsuite/asterisk/trunk r372 - in /asterisk/trunk/tests/queues/q...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Jun 8 18:14:52 CDT 2010


Author: mmichelson
Date: Tue Jun  8 18:14:48 2010
New Revision: 372

URL: http://svnview.digium.com/svn/testsuite?view=rev&rev=372
Log:
Set module load order in queue_baseline test to ensure local channel member is available.


Added:
    asterisk/trunk/tests/queues/queue_baseline/configs/modules.conf   (with props)
Modified:
    asterisk/trunk/tests/queues/queue_baseline/test.lua

Added: asterisk/trunk/tests/queues/queue_baseline/configs/modules.conf
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/tests/queues/queue_baseline/configs/modules.conf?view=auto&rev=372
==============================================================================
--- asterisk/trunk/tests/queues/queue_baseline/configs/modules.conf (added)
+++ asterisk/trunk/tests/queues/queue_baseline/configs/modules.conf Tue Jun  8 18:14:48 2010
@@ -1,0 +1,8 @@
+[modules]
+
+autoload => yes
+;We need to preload chan_local and pbx_config
+;so that the lone queue member doesn't appear as "Invalid"
+;and thus prevent the caller from entering the queue.
+preload => chan_local.so
+preload => pbx_config.so

Propchange: asterisk/trunk/tests/queues/queue_baseline/configs/modules.conf
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: asterisk/trunk/tests/queues/queue_baseline/configs/modules.conf
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: asterisk/trunk/tests/queues/queue_baseline/configs/modules.conf
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: asterisk/trunk/tests/queues/queue_baseline/test.lua
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/tests/queues/queue_baseline/test.lua?view=diff&rev=372&r1=371&r2=372
==============================================================================
--- asterisk/trunk/tests/queues/queue_baseline/test.lua (original)
+++ asterisk/trunk/tests/queues/queue_baseline/test.lua Tue Jun  8 18:14:48 2010
@@ -79,6 +79,7 @@
 instance = ast.new()
 instance:load_config("configs/extensions.conf")
 instance:load_config("configs/queues.conf")
+instance:load_config("configs/modules.conf")
 instance:generate_manager_conf()
 instance:spawn()
 




More information about the svn-commits mailing list