aboutsummaryrefslogtreecommitdiff
path: root/buildScripts/tests.ant.xml
diff options
context:
space:
mode:
authorReinier Zwitserloot <r.zwitserloot@projectlombok.org>2023-01-11 23:52:27 +0100
committerReinier Zwitserloot <r.zwitserloot@projectlombok.org>2023-01-11 23:52:27 +0100
commit28be9980407bc011a2bb4170bfe7334c050e2e91 (patch)
tree657fea829bc1875c2a068b005c8f42e1ccc3e73c /buildScripts/tests.ant.xml
parent2d948ce3e1da08053aac85e9bd0216b2748c0c85 (diff)
downloadlombok-28be9980407bc011a2bb4170bfe7334c050e2e91.tar.gz
lombok-28be9980407bc011a2bb4170bfe7334c050e2e91.tar.bz2
lombok-28be9980407bc011a2bb4170bfe7334c050e2e91.zip
[tests] Added `ant test.ecj19` and updated tests
Tests updated because ecj finally fixed their pretty printer for records, yay!
Diffstat (limited to 'buildScripts/tests.ant.xml')
-rw-r--r--buildScripts/tests.ant.xml9
1 files changed, 7 insertions, 2 deletions
diff --git a/buildScripts/tests.ant.xml b/buildScripts/tests.ant.xml
index 00e9aeb2..27795dea 100644
--- a/buildScripts/tests.ant.xml
+++ b/buildScripts/tests.ant.xml
@@ -216,16 +216,21 @@ This buildfile is part of projectlombok.org. It takes care of compiling and runn
<test.ecj-X version="11" />
</target>
- <target name="test.ecj14" depends="test.formatter.compile, test.compile" description="runs the tests on your default VM, testing the ecj11 release">
+ <target name="test.ecj14" depends="test.formatter.compile, test.compile" description="runs the tests on your default VM, testing the ecj14 release">
<fetchdep.ecj version="14" />
<test.ecj-X version="14" />
</target>
- <target name="test.ecj16" depends="test.formatter.compile, test.compile" description="runs the tests on your default VM, testing the ecj11 release">
+ <target name="test.ecj16" depends="test.formatter.compile, test.compile" description="runs the tests on your default VM, testing the ecj16 release">
<fetchdep.ecj version="16" />
<test.ecj-X version="16" />
</target>
+ <target name="test.ecj19" depends="test.formatter.compile, test.compile" description="runs the tests on your default VM, testing the ecj19 release">
+ <fetchdep.ecj version="19" />
+ <test.ecj-X version="19" />
+ </target>
+
<target name="test" depends="test.javacCurrent, test.eclipse-202006" description="runs the tests against the default JVM, javac, and eclipse" />
<target name="test.broad" depends="test.javac8, test.javac17, test.javac19, test.eclipse-oxygen, test.eclipse-202006, test.eclipse-202006-jdk8" description="runs the tests against the default JVM, javac, and eclipse" />
</project>