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 | 45011b6a2bdd51ec0872491895f00828a5acac32 (patch) | |
tree | 743bd792e66c6a5117ec5570769506c3c0a6690a /java/integrationtests | |
parent | ccb26f9f65930a16bf6ee9af14cadacc3028177f (diff) | |
download | qpid-python-45011b6a2bdd51ec0872491895f00828a5acac32.tar.gz |
removed incubating from various shell scripts, release artifacts, and READMEs
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@724948 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/integrationtests')
-rwxr-xr-x | java/integrationtests/bin/interoptests.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/java/integrationtests/bin/interoptests.py b/java/integrationtests/bin/interoptests.py index 128b6da183..a883a22a5f 100755 --- a/java/integrationtests/bin/interoptests.py +++ b/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"], |