diff options
Diffstat (limited to 'java/build.xml')
| -rw-r--r-- | java/build.xml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/java/build.xml b/java/build.xml index fee47d59ca..26aab1c322 100644 --- a/java/build.xml +++ b/java/build.xml @@ -219,5 +219,16 @@ <target name="cover-test" description="run tests and generate coverage information" depends="build"> <iterate target="cover-test" modules="broker client common"/> </target> - + + <target name="test-interop" depends="build,compile-tests" + description="run JMS examples against the corresponding c++ and python examples"> + <property name="qpid.src.home" location=".."/> + <echo-prop name="qpid.src.home"/> + <exec executable="/bin/sh"> + <env key="QPID_SRC_HOME" value="${qpid.src.home}"/> + <arg value="-c"/> + <arg value="${project.root}/client/example/bin/verify_all"/> + </exec> + </target> + </project> |
