summaryrefslogtreecommitdiff
path: root/pjsip-apps
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2008-07-07 20:15:25 +0000
committerBenny Prijono <bennylp@teluu.com>2008-07-07 20:15:25 +0000
commit1e3d62ad8a16f5f14a1f5d74e5234f06f3d1471b (patch)
tree869605f6356fe850681b67cfb5a9c3381eab5cc4 /pjsip-apps
parent28ec1de558e5b6fa5d6695ee797dc2774fb8739f (diff)
Modified runall.py python testing module to accommodate mod_recvfrom.py
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@2111 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip-apps')
-rw-r--r--pjsip-apps/src/test-pjsua/runall.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/pjsip-apps/src/test-pjsua/runall.py b/pjsip-apps/src/test-pjsua/runall.py
index 59ac6c8a..4785fdec 100644
--- a/pjsip-apps/src/test-pjsua/runall.py
+++ b/pjsip-apps/src/test-pjsua/runall.py
@@ -49,6 +49,10 @@ for f in os.listdir("scripts-media-playrec"):
for f in os.listdir("scripts-pesq"):
tests.append("mod_pesq.py scripts-pesq/" + f)
+# Add recvfrom tests
+for f in os.listdir("scripts-recvfrom"):
+ tests.append("mod_recvfrom.py scripts-recvfrom/" + f)
+
# Filter-out excluded tests
for pat in excluded_tests:
tests = [t for t in tests if t.find(pat)==-1]