summaryrefslogtreecommitdiff
path: root/tests/automated
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2010-04-29 02:27:23 +0000
committerBenny Prijono <bennylp@teluu.com>2010-04-29 02:27:23 +0000
commit8fc55facf6604eab683ade2f9ca593d3fb89032d (patch)
tree292b902270a088399d1abe3ba2a2087b98d367fa /tests/automated
parentd9303b2308e9032082fc1126c9b0255bb9fcf4b2 (diff)
Added exclusion pattern in the unit tests for codecs that are only available with IPP (refs #1041)
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@3151 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'tests/automated')
-rw-r--r--tests/automated/gnu.xml.template3
-rw-r--r--tests/automated/msvc.xml.template2
-rw-r--r--tests/automated/run_scenario.py (renamed from tests/automated/run.py)1
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/automated/gnu.xml.template b/tests/automated/gnu.xml.template
index 687c87b9..1de8aba4 100644
--- a/tests/automated/gnu.xml.template
+++ b/tests/automated/gnu.xml.template
@@ -1,7 +1,7 @@
<?xml version="1.0" ?>
<Scenario site="$(HOSTNAME)" url="http://my.cdash.org/submit.php?project=PJSIP" wdir="$(PJDIR)">
- <Submit group="Experimental" build="$(SUFFIX)-$(GCC)-IPP" disabled="$(DISABLED)" >
+ <Submit group="Experimental" build="$(SUFFIX)-$(GCC)" exclude="(.*amr.*)">
<Update />
<FileWrite file="user.mak">
<![CDATA[
@@ -13,7 +13,6 @@
/* Written by ccdash */
#define PJ_HAS_IPV6 1
#define PJMEDIA_HAS_G7221_CODEC 1
-#define PJMEDIA_HAS_INTEL_IPP 1
]]>
</FileWrite>
<Configure cmd="./aconfigure" />
diff --git a/tests/automated/msvc.xml.template b/tests/automated/msvc.xml.template
index 12af16e1..bd134c02 100644
--- a/tests/automated/msvc.xml.template
+++ b/tests/automated/msvc.xml.template
@@ -1,7 +1,7 @@
<?xml version="1.0" ?>
<Scenario site="$(HOSTNAME)" url="http://my.cdash.org/submit.php?project=PJSIP" wdir="$(PJDIR)">
- <Submit group="Experimental" build="$(OS)-$(VS)-$(VSTARGET)-default" >
+ <Submit group="Experimental" build="$(OS)-$(VS)-$(VSTARGET)-default" exclude="(.*amr.*)">
<Update />
<FileWrite file="pjlib/include/pj/config_site.h">
<![CDATA[
diff --git a/tests/automated/run.py b/tests/automated/run_scenario.py
index 7672a265..bfd06d12 100644
--- a/tests/automated/run.py
+++ b/tests/automated/run_scenario.py
@@ -4,6 +4,7 @@ import ccdash
if __name__ == "__main__":
sys.argv[0] = "ccdash.py"
+ sys.argv.insert(1, "scenario")
rc = ccdash.main(sys.argv)
sys.exit(rc)