JDK-8321902 : Robot-based Behavior tests must be under test.robot hierarchy
  • Type: Bug
  • Component: javafx
  • Sub-Component: controls
  • Affected Version: jfx22
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2023-12-12
  • Updated: 2023-12-22
  • Resolved: 2023-12-12
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.
Other
jfx22 b22Fixed
Related Reports
Relates :  
Description
By convention, all robot tests need to be in a package under test.robot.* so that they are only run when the gradle -PUSE_ROBOT=true option is set. The system tests in `test.javafx.scene.control.behavior` use Robot, but are outside that package hierarchy. They need to be moved to `test.robot.javafx.scene.control.behavior`.

NOTE:
build.gradle expects all robot tests to be in test.robot.* package hierarchy
```
4023         if (!IS_USE_ROBOT) {
4024             // Disable all robot-based visual tests
4025             exclude("test/robot/**");
4026         }
```
Comments
Changeset: 8872f7af Author: Andy Goryachev <angorya@openjdk.org> Date: 2023-12-12 20:45:27 +0000 URL: https://git.openjdk.org/jfx/commit/8872f7afab5eca725b29d9e5b005084c22b27b9c
12-12-2023

A pull request was submitted for review. URL: https://git.openjdk.org/jfx/pull/1306 Date: 2023-12-12 17:16:44 +0000
12-12-2023