Changeset 2025 for pjproject/trunk/pjsip-apps/src/test-pjsua/runall.py
- Timestamp:
- Jun 15, 2008 7:43:43 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/test-pjsua/runall.py
r2017 r2025 1 # $Id :$1 # $Id$ 2 2 import os 3 3 import sys … … 13 13 "scripts-call/300_ice_1_1"] 14 14 15 # Add all tests in "scripts-run" directory.15 # Add basic tests 16 16 for f in os.listdir("scripts-run"): 17 17 tests.append("mod_run.py scripts-run/" + f) 18 18 19 # Add all tests in "scripts-call" directory.19 # Add basic call tests 20 20 for f in os.listdir("scripts-call"): 21 21 tests.append("mod_call.py scripts-call/" + f) 22 23 # Add presence tests 24 for f in os.listdir("scripts-pres"): 25 tests.append("mod_pres.py scripts-pres/" + f) 22 26 23 27 # Filter-out excluded tests
Note: See TracChangeset
for help on using the changeset viewer.