Ignore:
Timestamp:
Jun 27, 2008 9:12:12 PM (16 years ago)
Author:
nanang
Message:

Ticket #543:

  • added options to run.py
  • passing options in runall.py to run.py
  • removing userdata in module callback functions
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip-apps/src/test-pjsua/inc_cfg.py

    r2066 r2078  
    11# $Id$ 
    22import random 
    3 from config_site import * 
    43 
    54DEFAULT_ECHO = True 
    65DEFAULT_TRACE = True 
    76DEFAULT_START_SIP_PORT = 50000 
     7 
     8# Shared vars 
     9ARGS = []               # arguments containing script module & config 
     10HAS_SND_DEV = 1         # specify 1 if system has sound device and prefer to use sound device in the tests 
    811 
    912# Individual pjsua instance configuration class 
     
    7679        test_func = None 
    7780        post_func = None 
    78         user_data = None 
    7981        def __init__(   self,  
    8082                        title,          # Test title 
     
    8284                        func=None, 
    8385                        skip=False, 
    84                         post_func=None, 
    85                         user_data=None): 
     86                        post_func=None): 
    8687                self.title = title 
    8788                self.inst_params = inst_params 
     
    8990                self.test_func = func 
    9091                self.post_func = post_func 
    91                 self.user_data = user_data 
    9292 
    9393 
Note: See TracChangeset for help on using the changeset viewer.