These compiler-rt tests should be UNSUPPORTED instead of XFAIL, which seems to be the real intent of the authors.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Unit Tests
Unit Tests
Time | Test | |
---|---|---|
130 ms | windows > LLVM.DebugInfo/X86::convert-debugloc.ll |
Event Timeline
Comment Actions
Hi @aorlov,
UNSUPPORTED: * is not working actually. Please check a build log for linux > Builtins-x86_64-linux.Builtins-x86_64-linux::gcc_personality_test.c above. It says
ValueError: Error in UNSUPPORTED list: couldn't parse text: '*' in expression: '*'
in according of llvm/utils/lit/lit/BooleanExpression.py You may use true instead of * or just leave an empty expression, such UNSUPPORTED:. The 'true' expression keyword will be added into the empty list by default.