[Lldb-commits] [PATCH] D48450: [DataFormatter] Add CFDictionary data formatter
Jim Ingham via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Jun 21 11:47:35 PDT 2018
jingham added subscribers: JDevlieghere, jingham.
jingham added a comment.
Yes, I really wish unittest2 allowed non-aborting tests. If you split up all these tests, then you make the testsuite have to build and run some little executable over and over. It would be so nice if there were a way to say:
self.startTestBundle()
self.assertTrue(something)
...
self.assertTrue(something_else)
self.endTestBundle()
where the failures would be held in the test bundle till "endTestBundle", and then all the failures reported.
That would allow us to test a bunch of independent things without having to build & run over and over.
Jim
https://reviews.llvm.org/D48450
More information about the lldb-commits
mailing list