[Lldb-commits] [PATCH] D85169: [test] Exit with an error if no tests are run.
Jonas Devlieghere via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Aug 3 16:02:38 PDT 2020
JDevlieghere accepted this revision.
JDevlieghere added a comment.
This revision is now accepted and ready to land.
LGTM
================
Comment at: lldb/packages/Python/lldbsuite/test/dotest.py:1043
+ if configuration.suite.countTestCases() == 0:
+ print("error: did not discover any tests.")
+ exitTestSuite(1)
----------------
Maybe `did not discover any (matching) tests` to make it clear that this might be the result of user input?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D85169/new/
https://reviews.llvm.org/D85169
More information about the lldb-commits
mailing list