summaryrefslogtreecommitdiffstats
path: root/testing-client
diff options
context:
space:
mode:
authoraclement <aclement>2005-04-19 10:38:38 +0000
committeraclement <aclement>2005-04-19 10:38:38 +0000
commitf7bcff6dbf16ed80ca4934fd8529deae6ebdde7c (patch)
tree2362d53afe3cb37c15b9ff0a3d513fcad9e0b89b /testing-client
parent45ae94da9e44a31f970c9f5ee4f678902b26fc17 (diff)
downloadaspectj-f7bcff6dbf16ed80ca4934fd8529deae6ebdde7c.tar.gz
aspectj-f7bcff6dbf16ed80ca4934fd8529deae6ebdde7c.zip
From branch: New build scripts that Alex uses under IntelliJ - can be run individually or via master in build module.
Diffstat (limited to 'testing-client')
-rw-r--r--testing-client/build.xml35
1 files changed, 35 insertions, 0 deletions
diff --git a/testing-client/build.xml b/testing-client/build.xml
new file mode 100644
index 000000000..8f9e8d4ad
--- /dev/null
+++ b/testing-client/build.xml
@@ -0,0 +1,35 @@
+<?xml version="1.0"?>
+<project name="testing-client" default="all" basedir=".">
+
+ <import file="../build/build-common.xml"/>
+ <import file="../bridge/build.xml"/>
+
+ <path id="testing-client.test.src.path">
+ <fileset dir="${basedir}/../lib">
+ <include name="junit/*.jar"/>
+ </fileset>
+ <path refid="testing-client.src.path"/>
+ </path>
+
+ <path id="testing-client.src.path">
+ <pathelement path="../bridge/bin"/>
+ <pathelement path="../util/bin"/>
+ </path>
+
+ <target name="compile" depends="init,
+ bridge.compile,
+ util.compile">
+ <srccompile project="testing-client" path="testing-client.src.path"/>
+ </target>
+
+ <target name="test:compile" depends="compile">
+ <testcompile project="testing-client" path="testing-client.test.src.path"/>
+ </target>
+
+ <target name="test" depends="test:compile">
+ <testrun project="testing-client" path="testing-client.test.src.path" suite="TestingClientModuleTests"/>
+ </target>
+
+
+</project>
+