summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/test-pjsua/runall.py
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2008-06-15 19:43:43 +0000
committerBenny Prijono <bennylp@teluu.com>2008-06-15 19:43:43 +0000
commit52147c5315e8922dd74eccc96aef9814c507a5ce (patch)
tree66899eb44c84f61d03e423f7589a6f2a3b7b0240 /pjsip-apps/src/test-pjsua/runall.py
parent5e535ba2d77e5fa029901d60ecfabadac0f35d61 (diff)
Added presence pjsua unit tests
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@2025 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 0ded114b..41656345 100644
--- a/pjsip-apps/src/test-pjsua/runall.py
+++ b/pjsip-apps/src/test-pjsua/runall.py
@@ -1,4 +1,4 @@
-# $Id:$
+# $Id$
import os
import sys
@@ -12,14 +12,18 @@ excluded_tests = [ "svn",
"scripts-call/150_srtp_2_1",
"scripts-call/300_ice_1_1"]
-# Add all tests in "scripts-run" directory.
+# Add basic tests
for f in os.listdir("scripts-run"):
tests.append("mod_run.py scripts-run/" + f)
-# Add all tests in "scripts-call" directory.
+# Add basic call tests
for f in os.listdir("scripts-call"):
tests.append("mod_call.py scripts-call/" + f)
+# Add presence tests
+for f in os.listdir("scripts-pres"):
+ tests.append("mod_pres.py scripts-pres/" + f)
+
# Filter-out excluded tests
for pat in excluded_tests:
tests = [t for t in tests if t.find(pat)==-1]