[PATCH] D43314: [lit] - Allow 1 test to report multiple micro-test results to provide support for microbenchmarks.

Brian Homerding via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 15 08:27:08 PST 2018


homerdin marked 3 inline comments as done.
homerdin added inline comments.


================
Comment at: utils/lit/lit/main.py:130
+            for key, micro_test in test.result.microResults.items():
+                micro_full_name = test.getFullName()[:-5] + '/' + key + ".test"
+
----------------
rengolin wrote:
> What's with the [:-5] ?
I changed the way I build the name to be clearer.  Was using [:-5] (.test) to expand the parent test name with the micro test name before ".test" 


https://reviews.llvm.org/D43314





More information about the llvm-commits mailing list