RFR: 8169285: Re-enable javafx.swt tests [v2]

Kevin Rushforth kcr at openjdk.org
Wed Apr 16 21:56:48 UTC 2025


On Wed, 16 Apr 2025 21:30:11 GMT, Andy Goryachev <angorya at openjdk.org> wrote:

> yes, we still need `SWT_TEST` so we can disable it on mac.

If that flag is the mechanism we need to use to disable it on macOS, then we will need the following additional change:


 // Specifies whether to run system tests that depend on SWT (only used when FULL_TEST is also enabled)
-defineProperty("SWT_TEST", "true")
+defineProperty("SWT_TEST", IS_MAC ? "false" ? "true")
 ext.IS_SWT_TEST = Boolean.parseBoolean(SWT_TEST);

-------------

PR Comment: https://git.openjdk.org/jfx/pull/1783#issuecomment-2810895455


More information about the openjfx-dev mailing list