Changeset 2237
- Timestamp:
- Aug 26, 2008 12:13:25 PM (16 years ago)
- Location:
- pjproject/trunk/pjsip-apps/src/test-pjsua
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/test-pjsua/config_site.py
r2052 r2237 2 2 3 3 # Specify if host has sound device, or test should be performed using sound device 4 HAS_SND_DEV = 14 HAS_SND_DEV = 0 -
pjproject/trunk/pjsip-apps/src/test-pjsua/inc_cfg.py
r2084 r2237 1 1 # $Id$ 2 2 import random 3 import config_site 3 4 4 5 DEFAULT_ECHO = True … … 8 9 # Shared vars 9 10 ARGS = [] # arguments containing script module & config 10 HAS_SND_DEV = 1 # specify 1 if system has sound device and prefer to use sound device in the tests11 HAS_SND_DEV = config_site.HAS_SND_DEV 11 12 12 13 # Individual pjsua instance configuration class
Note: See TracChangeset
for help on using the changeset viewer.