On Wed, 16 Apr 2025 21:30:11 GMT, Andy Goryachev <[email protected]> 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