[PATCH] D102694: [lit][gtest] Support SKIPPED tests
Dan Liew via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu May 20 22:23:03 PDT 2021
delcypher added inline comments.
================
Comment at: llvm/utils/lit/lit/formats/googletest.py:138
+ if '[ SKIPPED ] 1 test,' in out:
+ return lit.Test.SKIPPED, ''
----------------
Looking for this exact string seems fragile. Maybe use a regex that can cope with a variable amount of spaces?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D102694/new/
https://reviews.llvm.org/D102694
More information about the llvm-commits
mailing list