aboutsummaryrefslogtreecommitdiffstats
path: root/build/test-build-script.xml
diff options
context:
space:
mode:
authorAlexander Kriegisch <Alexander@Kriegisch.name>2024-02-16 11:08:32 +0700
committerAlexander Kriegisch <Alexander@Kriegisch.name>2024-02-16 12:11:21 +0700
commite80e8a98cf6c061b6a25d0e664bd6dd593562fe3 (patch)
treeeaa8801df15de81f1c2429730b216221eede582f /build/test-build-script.xml
parente8d3944d8c15d69175822e75f73873d3d7d5ee6e (diff)
downloadaspectj-e80e8a98cf6c061b6a25d0e664bd6dd593562fe3.tar.gz
aspectj-e80e8a98cf6c061b6a25d0e664bd6dd593562fe3.zip
Remove obsolete stuff from module 'build' and lib/build
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'build/test-build-script.xml')
-rw-r--r--build/test-build-script.xml42
1 files changed, 0 insertions, 42 deletions
diff --git a/build/test-build-script.xml b/build/test-build-script.xml
deleted file mode 100644
index 610dd66cd..000000000
--- a/build/test-build-script.xml
+++ /dev/null
@@ -1,42 +0,0 @@
-<!-- ========================================================================= -->
-<!-- Copyright (c) 2005 Contributors -->
-<!-- All rights reserved. -->
-<!-- This program and the accompanying materials are made available -->
-<!-- under the terms of the Eclipse Public License v 2.0 -->
-<!-- which accompanies this distribution and is available at -->
-<!-- https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt -->
-<!-- -->
-<!-- Contributors: (See CVS checkin's) -->
-<!-- Wes Isberg initial implementation -->
-<!-- ========================================================================= -->
-
-<project name="test-build-script" default="all" basedir=".">
-
- <property name="modules.dir" location="${basedir}/.."/>
-
- <import file="${modules.dir}/build/build-properties.xml"/>
-
- <target name="all" depends="failures"/>
-
- <target name="failures" depends="init-properties">
- <delete file="${aj.failure.file}"/>
- <echo message="-> no false negative (no file)"/>
- <antcall target="fail-if-failures"/>
-
- <touch file="${aj.failure.file}"/>
- <echo message="-> no false negative (empty file)"/>
- <antcall target="fail-if-failures"/>
-
- <echo message="-> no false negative (unset Property)"/>
- <report-if-failed text="not error text" property="unsetProperty"/>
- <antcall target="fail-if-failures"/>
-
- <echo message="-> true negative (set Property)"/>
- <property name="setProperty" value="."/>
- <report-if-failed text="error text" property="setProperty"/>
- <antcall target="fail-if-failures"/>
-
- <loadfile property="emit" srcfile="${aj.failure.file}"/>
- <echo message="-> file contents: ${emit}"/>
- </target>
-</project>