[Lldb-commits] [PATCH] D127258: [lldb] Parse the dotest output to determine the most appropriate result code
Jonas Devlieghere via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Jun 7 16:22:15 PDT 2022
JDevlieghere added a comment.
Here are the results:
Before:
Unsupported: 145
Passed : 873
Failed : 7
After:
Unsupported : 167
Passed : 834
Expectedly Failed: 16
Unresolved : 1
Failed : 7
Note that this patch does change the behavior where passes and failures are no longer prioritized. That means that if you have a test that has 3 passes and 4 skips, it will be reported as unsupported (while currently it's considered a pass). We could special case PASS and FAIL so that if there's at least on PASS or FAIL the test is marked as such. That would be more in line with the current state of things.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D127258/new/
https://reviews.llvm.org/D127258
More information about the lldb-commits
mailing list