summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/test-pjsua/inc_cfg.py
diff options
context:
space:
mode:
authorNanang Izzuddin <nanang@teluu.com>2008-06-26 12:26:52 +0000
committerNanang Izzuddin <nanang@teluu.com>2008-06-26 12:26:52 +0000
commit6a60cb0dca962dae6a8b9860d13ff3f2a448311d (patch)
tree361c81a2333ec93d4364ab2f19a4aeca3fdb7f85 /pjsip-apps/src/test-pjsua/inc_cfg.py
parent09fd72ad28fee7079e6e7bf46008780db0be5d15 (diff)
Ticket #543: Updated PESQ test, sound device used only by one side to avoid contention
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@2057 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip-apps/src/test-pjsua/inc_cfg.py')
-rw-r--r--pjsip-apps/src/test-pjsua/inc_cfg.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/pjsip-apps/src/test-pjsua/inc_cfg.py b/pjsip-apps/src/test-pjsua/inc_cfg.py
index 78dc04f3..6f3219c9 100644
--- a/pjsip-apps/src/test-pjsua/inc_cfg.py
+++ b/pjsip-apps/src/test-pjsua/inc_cfg.py
@@ -67,6 +67,8 @@ class TestParam:
title = ""
# params is list containing InstanceParams objects
inst_params = []
+ # flag if this tes should be skipped
+ skip = None
# list of Expect instances, to be filled at run-time by
# the test program
process = []
@@ -77,11 +79,13 @@ class TestParam:
def __init__( self,
title, # Test title
inst_params, # InstanceParam's as list
+ skip=False,
func=None,
post_func=None,
user_data=None):
self.title = title
self.inst_params = inst_params
+ self.skip = skip
self.test_func = func
self.post_func = post_func
self.user_data = user_data