[llvm] Add special case for unsupported test (PR #78858)
James Henderson via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 22 00:50:44 PST 2024
================
@@ -568,7 +568,8 @@ list of boolean expressions. The values in each expression may be:
| ``UNSUPPORTED`` disables the test if any expression is true.
| ``XFAIL`` expects the test to fail if any expression is true.
-As a special case, ``XFAIL: *`` is expected to fail everywhere.
+As a special case, ``XFAIL: *`` is expected to fail everywhere. Similarly,
+``UNSUPPORTED: target={{.*}}`` will disable the test everywhere.
----------------
jh7370 wrote:
I'm not sure `UNSUPPORTED: target={{.*}}` is really a "special case": it's just a natural consequence of the use of a regex with the `target=` method. `XFAIL: *` on the other hand IS a special case, because it isn't a regex.
https://github.com/llvm/llvm-project/pull/78858
More information about the llvm-commits
mailing list