This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-bcel.git
The following commit(s) were added to refs/heads/master by this push:
new f09ac326 Make reproducible on the Azul JDK
f09ac326 is described below
commit f09ac326debcaa10acaba4ecb2bc13f343a789fd
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Jan 7 11:01:41 2026 -0500
Make reproducible on the Azul JDK
To simplify reproducible builds, update
org.apache.bcel.classfile.ConstantPoolModuleToStringTest.ToStringVisitor.visitModuleRequires(ModuleRequires)
for the Azul JDK
---
src/changes/changes.xml | 1 +
.../java/org/apache/bcel/classfile/ConstantPoolModuleToStringTest.java | 3 ++-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 66e8ddba..5dc22a14 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -64,6 +64,7 @@ The <action> type attribute can be add,update,fix,remove.
<action type="fix" dev="fmantz" due-to="Gary
Gregory">Fix infinite loop in example.TransitiveHull #476.</action>
<action type="fix" dev="ggregory" due-to="Gary
Gregory">Fix Apache RAT plugin console warnings.</action>
<action type="fix" dev="ggregory" due-to="Gary
Gregory">Fix malformed Javadoc comments.</action>
+ <action type="fix" dev="ggregory" due-to="Gary
Gregory">Make reproducible on the Azul JDK.</action>
<!-- ADD -->
<action type="add" dev="ggregory" due-to="Gary
Gregory">Add Const.MAJOR_26.</action>
<action type="add" dev="ggregory" due-to="Gary
Gregory">Add Const.MINOR_26.</action>
diff --git
a/src/test/java/org/apache/bcel/classfile/ConstantPoolModuleToStringTest.java
b/src/test/java/org/apache/bcel/classfile/ConstantPoolModuleToStringTest.java
index 40b37f7d..f7297f88 100644
---
a/src/test/java/org/apache/bcel/classfile/ConstantPoolModuleToStringTest.java
+++
b/src/test/java/org/apache/bcel/classfile/ConstantPoolModuleToStringTest.java
@@ -396,7 +396,8 @@ class ConstantPoolModuleToStringTest {
"org.opentest4j",
"net.bytebuddy",
"com.sun.jna",
- "junit");
+ "junit",
+ "com.azul.tooling"); // com.azul.tooling for
reproducibility with Azul JDK
assertTrue(condition, s);
}