Test should not run in non-WIndows platform if `sun.java2d.d3d=true` but 
`isSupported` call in the test checks for `Boolean.getBoolean(d3d)` which 
returns false as it treats "true" as the name of another system property
so we need to use `Boolean.parseBoolean` which returns true and `isSupported` 
in that case returns false 
so that test should be ignored for non-Windows platform if d3d is true

Since 1st @run execution already tests for default pipeline in non-Windows 
platform, there's no need to run it again if d3d is true 

---------
- [x] I confirm that I make this contribution in accordance with the [OpenJDK 
Interim AI Policy](https://openjdk.org/legal/ai).

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

Commit messages:
 - nod3d fix

Changes: https://git.openjdk.org/jdk/pull/32024/files
  Webrev: https://webrevs.openjdk.org/?repo=jdk&pr=32024&range=00
  Issue: https://bugs.openjdk.org/browse/JDK-8388849
  Stats: 1 line in 1 file changed: 0 ins; 0 del; 1 mod
  Patch: https://git.openjdk.org/jdk/pull/32024.diff
  Fetch: git fetch https://git.openjdk.org/jdk.git pull/32024/head:pull/32024

PR: https://git.openjdk.org/jdk/pull/32024

Reply via email to