- Timestamp:
- Aug 17, 2009 8:29:47 AM (15 years ago)
- Location:
- pjproject/trunk/tests/pjsua
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/tests/pjsua/mod_media_playrec.py
r2083 r2884 21 21 22 22 # WAV similarity calculator 23 COMPARE_WAV_EXE = "tools/cmp_wav.exe" 23 COMPARE_WAV_EXE = "" 24 if sys.platform.find("win32")!=-1: 25 COMPARE_WAV_EXE = "tools/cmp_wav.exe" 26 G_INUNIX = False 27 else: 28 COMPARE_WAV_EXE = "tools/cmp_wav" 29 G_INUNIX = True 30 24 31 25 32 # Threshold to declare degradation is too high when result is lower than this value … … 79 86 fullcmd = COMPARE_WAV_EXE + " " + input_filename + " " + output_filename + " " + "3000" 80 87 endpt.trace("Popen " + fullcmd) 81 cmp_proc = subprocess.Popen(fullcmd, s tdout=subprocess.PIPE, universal_newlines=True)88 cmp_proc = subprocess.Popen(fullcmd, shell=G_INUNIX, stdout=subprocess.PIPE, universal_newlines=True) 82 89 83 90 # Parse similarity ouput -
pjproject/trunk/tests/pjsua/scripts-sendto/999_message_no_body.py
r2086 r2884 3 3 import inc_sdp as sdp 4 4 5 # There's some report that incoming MESSAGE without body will crash pjsua5 # Incoming MESSAGE without body is now accepted 6 6 # 7 7 complete_msg = \ … … 21 21 22 22 sendto_cfg = sip.SendtoCfg( "empty MESSAGE", "--null-audio --auto-answer 200", 23 "", 488, complete_msg=complete_msg)23 "", 200, complete_msg=complete_msg) 24 24 -
pjproject/trunk/tests/pjsua/tools
- Property svn:ignore
-
old new 1 1 pe* 2 cmp_wav
-
- Property svn:ignore
Note: See TracChangeset
for help on using the changeset viewer.