What does "JPRT" mean in OpenJDK

I'm looking for where the version information is stored in the OpenJDK source tree and noticed that the "make / jprt.properties" file contains some relevant information there. What does JPRT mean in this context?

+3


source to share


3 answers


JPRT is a jenkins plugin: https://plugins.jenkins.io/jprt

OpenJDK builds are probably tested using jenkins with JPRT plugin https://github.com/jenkinsci/jprt-plugin



It is also mentioned in java ("JPRT control builds / jprt control jobs"):
http://www.oracle.com/technetwork/java/javase/6u4-140071.html
http://bugs.java.com/bugdatabase/ view_bug.do?bug_id=8130092

+2


source


I am assuming "jprt" is a regression testing tool / cluster used for regression testing of the Java platform.



(A Google search for "jprt" includes hits with oblique links to the "jprt" command and to the JPRT machines.)

+1


source


JPRT is Oracle's internal OpenJDK build and test system. For example, the Oracle Hotspot team uses it to ensure that the proposed changes build HotSpot and pass a baseline set of tests on a set of major platforms. You can read more about it here: http://mail.openjdk.java.net/pipermail/hotspot-dev/2014-September/015259.html

+1


source







All Articles