summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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]