Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@
* @library /test/lib /
* @summary test combining vector not operation with compare
* @modules jdk.incubator.vector
* @requires (os.arch != "riscv64" | (os.arch == "riscv64" & vm.cpu.features ~= ".*rvv.*"))
* @requires (os.arch != "riscv64" & os.arch != "ppc64" & os.arch != "ppc64le") |
* (os.arch == "riscv64" & vm.cpu.features ~= ".*rvv.*") |
* ((os.arch == "ppc64" | os.arch == "ppc64le") & vm.cpu.features ~= ".*darn.*")
Comment on lines +38 to +40
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Drive-by comment:

This is getting more convoluted now. I think it would make sense to at least document why we are skipping it for all the platforms.

You should also state the reason for the change in the PR description as well as on JIRA ;)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have an alternative solution: #27805
Please take a look.

*
* @run driver compiler.vectorapi.VectorMaskCompareNotTest
*/
Expand Down