[PATCH] D78164: [lit] Provide extension API for custom result categories
Abhinav Gaba via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon May 4 11:16:01 PDT 2020
abhinavgaba added inline comments.
================
Comment at: llvm/utils/lit/tests/Inputs/custom-result-category/lit.cfg:8
+config.suffixes = ['.txt']
+config.test_format = format.MyFormat()
+config.test_source_root = None
----------------
Using MyFormat() here is causing `check-lit` to hang indefinitely on WIndows x86-64 (Python 2.7.6).
Changing this to use `config.test_format = lit.format/ShTest()` "fixes" the hang (although then the test fails, which is expected).
Is that a known issue?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D78164/new/
https://reviews.llvm.org/D78164
More information about the llvm-commits
mailing list