diff options
author | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2023-01-11 23:52:27 +0100 |
---|---|---|
committer | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2023-01-11 23:52:27 +0100 |
commit | 28be9980407bc011a2bb4170bfe7334c050e2e91 (patch) | |
tree | 657fea829bc1875c2a068b005c8f42e1ccc3e73c /buildScripts | |
parent | 2d948ce3e1da08053aac85e9bd0216b2748c0c85 (diff) | |
download | lombok-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')
-rw-r--r-- | buildScripts/ivy.xml | 2 | ||||
-rw-r--r-- | buildScripts/tests.ant.xml | 9 |
2 files changed, 9 insertions, 2 deletions
diff --git a/buildScripts/ivy.xml b/buildScripts/ivy.xml index 1c652a40..4eac69d6 100644 --- a/buildScripts/ivy.xml +++ b/buildScripts/ivy.xml @@ -29,6 +29,7 @@ <conf name="ecj11" /> <conf name="ecj14" /> <conf name="ecj16" /> + <conf name="ecj19" /> <conf name="eclipse-oxygen" /> <conf name="eclipse-202006" /> @@ -77,6 +78,7 @@ <!-- ecjs --> + <dependency org="org.eclipse.jdt" name="ecj" rev="3.32.0" conf="ecj19->master" /> <dependency org="org.eclipse.jdt" name="ecj" rev="3.25.0" conf="ecj16->master" /> <dependency org="org.eclipse.jdt" name="ecj" rev="3.22.0.v20200530-2032" conf="ecj14->master" /> <dependency org="org.eclipse.jdt" name="ecj" rev="3.16.0" conf="ecj11->master" /> 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> |