diff options
author | Rafael H. Schloming <rhs@apache.org> | 2008-12-10 01:29:01 +0000 |
---|---|---|
committer | Rafael H. Schloming <rhs@apache.org> | 2008-12-10 01:29:01 +0000 |
commit | ea21ffd2442abb830ff9860c8b2576daa7a4d353 (patch) | |
tree | fca6e5de19b4004fc4a20f1bfc13479a9e438cbd /qpid/java/integrationtests | |
parent | cad0d986721f80d7e1dbbad3295fb9eede860648 (diff) | |
download | qpid-python-ea21ffd2442abb830ff9860c8b2576daa7a4d353.tar.gz |
removed incubating from various shell scripts, release artifacts, and READMEs
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@724948 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/integrationtests')
-rwxr-xr-x | qpid/java/integrationtests/bin/interoptests.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/qpid/java/integrationtests/bin/interoptests.py b/qpid/java/integrationtests/bin/interoptests.py index 128b6da183..a883a22a5f 100755 --- a/qpid/java/integrationtests/bin/interoptests.py +++ b/qpid/java/integrationtests/bin/interoptests.py @@ -27,11 +27,11 @@ interop_cases = ["InteropTestCase1DummyRun", "InteropTestCase2BasicP2P", "Intero interop_command = "java -cp %s org.apache.qpid.test.framework.distributedtesting.Coordinator --xml -e interop -o . -n interop org.apache.qpid.interop.testcases.%s" # TODO: read this from the ant properties file -clientlibs = ["qpid-integrationtests-incubating-M4.jar", - "qpid-junit-toolkit-incubating-M4.jar", +clientlibs = ["qpid-integrationtests-M4.jar", + "qpid-junit-toolkit-M4.jar", "junit-3.8.1.jar", - "qpid-systests-incubating-M4.jar", - "qpid-junit-toolkit-incubating-M4.jar", + "qpid-systests-M4.jar", + "qpid-junit-toolkit-M4.jar", "geronimo-jms_1.1_spec-1.0.jar", "log4j-1.2.12.jar"] @@ -111,10 +111,10 @@ def start_java(javapath): for lib in clientlibs: classpath = classpath + testlibdir+"/"+lib+";" - classpath = classpath + javapath+"/lib/qpid-incubating.jar" + classpath = classpath + javapath+"/lib/qpid-all.jar" # Add qpid common since the tests need that, classpath hatefulness - classpath = classpath + ";"+testlibdir+"/qpid-common-incubating-M4.jar" + classpath = classpath + ";"+testlibdir+"/qpid-common-M4.jar" return Popen(["java", "-cp","\""+classpath+"\"", "org.apache.qpid.test.framework.distributedtesting.TestClient"], |