summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/test-pjsua/runall.py
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2008-06-20 00:25:55 +0000
committerBenny Prijono <bennylp@teluu.com>2008-06-20 00:25:55 +0000
commit8dd0b7bc51da96d550888aeb199cee06d0b1a002 (patch)
treee97afee7367bc360e1ec5e2e9303bbd899514348 /pjsip-apps/src/test-pjsua/runall.py
parentd43d82894549014370cb97b965c6e36862d1950d (diff)
More ticket #543: added mod_sendto.py to send arbitrary INVITE request
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@2033 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip-apps/src/test-pjsua/runall.py')
-rw-r--r--pjsip-apps/src/test-pjsua/runall.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/pjsip-apps/src/test-pjsua/runall.py b/pjsip-apps/src/test-pjsua/runall.py
index dc1119da..11ea5927 100644
--- a/pjsip-apps/src/test-pjsua/runall.py
+++ b/pjsip-apps/src/test-pjsua/runall.py
@@ -12,9 +12,9 @@ tests = []
# Excluded tests (because they fail?)
excluded_tests = [ "svn",
"pyc",
- "scripts-call/150_srtp_1_2",
- "scripts-call/150_srtp_2_1",
- "scripts-call/300_ice_1_1"]
+ #"scripts-call/150_srtp_1_2",
+ "scripts-call/150_srtp_2_1"
+ ]
# Add basic tests
for f in os.listdir("scripts-run"):
@@ -28,6 +28,10 @@ for f in os.listdir("scripts-call"):
for f in os.listdir("scripts-pres"):
tests.append("mod_pres.py scripts-pres/" + f)
+# Add mod_sendto tests
+for f in os.listdir("scripts-sendto"):
+ tests.append("mod_sendto.py scripts-sendto/" + f)
+
# Filter-out excluded tests
for pat in excluded_tests:
tests = [t for t in tests if t.find(pat)==-1]