JDK-8299237 : add ArraysSupport.newLength test to a test group
  • Type: Sub-task
  • Component: core-libs
  • Sub-Component: java.util
  • Priority: P3
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2022-12-21
  • Updated: 2023-01-03
  • Resolved: 2022-12-22
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 20 JDK 21
20 masterFixed 21Fixed
Related Reports
Relates :  
Description
The path to the test in question is

    test/jdk/jdk/internal/util/ArraysSupport/NewLength.java

It's not in any test group, which means it's not getting run regularly. The jdk/internal/util directory was newly added with this test. In case anything else gets added there in the future, that directory should probably be added to the jdk_util_other test group.
Comments
Changeset: 33042a49 Author: Stuart Marks <smarks@openjdk.org> Date: 2022-12-22 21:56:04 +0000 URL: https://git.openjdk.org/jdk20/commit/33042a49d75011958e5030679433e6b2a779d90a
22-12-2022

A pull request was submitted for review. URL: https://git.openjdk.org/jdk20/pull/73 Date: 2022-12-22 21:25:39 +0000
22-12-2022

Actually it's not quite as bad as I had thought. The TEST.groups file has a definition of tier4 that is essentially "everything that isn't in tiers 1, 2, and 3" so in fact tests that are missing will get run as part of tier4. This is java.util stuff though so it really should be part of tier1 and not tier4, so this change should still go in.
22-12-2022

A pull request was submitted for review. URL: https://git.openjdk.org/jdk/pull/11769 Date: 2022-12-22 19:37:12 +0000
22-12-2022