[PATCH] D122939: [NVPTX][tests] Do not run the test CodeGen/Generic/2010-11-04-BigByval.ll

Artem Belevich via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 12 11:08:14 PDT 2022


tra added a comment.

Looking at `lit` docs and sources, it appears that `UNSUPPORTED` will disable the test if any of the expressions is true and it matches against both features and the target triple (the default target?).
This leads me to believe that mentioning `nvptx` there will disable the test whenever the NVPTX back-end is compiled in, regardless of whether it's the default target.

You may try specifying something that looks like a triple (`UNSUPPORTED: nvptx64-|nvptx-`) which would match only the target triple and not a back-end feature and configure the build target with a full triple  `nvptx64-nvidia-cuda`. This is probably the closest we'd get to keeping the test running for everyone who does not have NVPTX as the default target.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D122939/new/

https://reviews.llvm.org/D122939



More information about the llvm-commits mailing list