Changeset 5067 for pjproject/trunk/tests/pjsua/mod_sipp.py
- Timestamp:
- Apr 13, 2015 12:28:02 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/tests/pjsua/mod_sipp.py
r4188 r5067 41 41 42 42 # SIPp executable path and param 43 #SIPP_PATH = '"C:\\ Program Files (x86)\\Sipp_3.2\\sipp.exe"'43 #SIPP_PATH = '"C:\\devs\\bin\\Sipp_3.2\\sipp.exe"' 44 44 SIPP_PATH = 'sipp' 45 45 SIPP_PORT = 6000 … … 225 225 # Ideally the poll should be done contiunously until SIPp process is 226 226 # terminated. 227 for ua_idx in range(len(ua)): 228 ua[ua_idx].expect(inc_const.STDOUT_REFRESH, raise_on_error = False) 227 # Update: now pjsua stdout is polled continuously by a dedicated thread, 228 # so the poll is no longer needed 229 #for ua_idx in range(len(ua)): 230 # ua[ua_idx].expect(inc_const.STDOUT_REFRESH, raise_on_error = False) 229 231 230 232 return ua_err_st
Note: See TracChangeset
for help on using the changeset viewer.