diff options
author | Aidan Skinner <aidan@apache.org> | 2008-04-24 16:05:16 +0000 |
---|---|---|
committer | Aidan Skinner <aidan@apache.org> | 2008-04-24 16:05:16 +0000 |
commit | 20373a2ab9e3dab3b2164e1e0409eefd2fb4cc4e (patch) | |
tree | 73101ca499e99aeeb3b04c7e89c675493139273e | |
parent | 841ceb18e777e49ccddc189419265f5e0b20fedf (diff) | |
download | qpid-python-20373a2ab9e3dab3b2164e1e0409eefd2fb4cc4e.tar.gz |
QPID-832 make systests run
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@651301 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | java/build.deps | 3 | ||||
-rw-r--r-- | java/systests/build.xml | 7 |
2 files changed, 7 insertions, 3 deletions
diff --git a/java/build.deps b/java/build.deps index 8acf1d8b4c..2f5390e3e3 100644 --- a/java/build.deps +++ b/java/build.deps @@ -33,9 +33,10 @@ client.libs=${common.libs} ${geronimo-jms} broker.libs=${common.libs} ${commons-cli} ${commons-logging} ${log4j} \ ${slf4j-log4j} ${xalan} ${felix.libs} + junit-toolkit.libs=${log4j} ${junit} test.libs=${slf4j-log4j} ${junit-toolkit.libs} -systests.libs=${client.libs} ${test.libs} +systests.libs=${client.libs} ${test.libs} ${broker.libs} perftests.libs=${systests.libs} integrationtests.libs=${systests.libs} diff --git a/java/systests/build.xml b/java/systests/build.xml index b84cb9fc32..db7f594421 100644 --- a/java/systests/build.xml +++ b/java/systests/build.xml @@ -1,8 +1,8 @@ <!-- - - Licensed to the Apache Software Foundation (ASF) under one - - or more contributor license agreements. See the NOTICE file - - distributed with this work for additional information +nn - or more contributor license agreements. See the NOTICE file + -n distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance @@ -22,6 +22,9 @@ <property name="module.depends" value="client broker common junit-toolkit"/> <property name="module.dist" value="false"/> + <property name="module.test.src" location="src/main/java"/> + <import file="../module.xml"/> + <property name="module.test.classes" location="${module.build}/main/classes"/> </project> |