summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/test-pjsua/runall.py
diff options
context:
space:
mode:
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]