From mboxrd@z Thu Jan 1 00:00:00 1970 From: brendanhiggins@google.com (Brendan Higgins) Date: Mon, 6 May 2019 14:42:53 -0700 Subject: [PATCH v2 12/17] kunit: tool: add Python wrappers for running KUnit tests In-Reply-To: References: <20190501230126.229218-1-brendanhiggins@google.com> <20190501230126.229218-13-brendanhiggins@google.com> <20190502110220.GD12416@kroah.com> <1a5f3c44-9fa9-d423-66bf-45255a90c468@gmail.com> <052fa196-4ea9-8384-79b7-fe6bacc0ee82@gmail.com> <63f63c7c-6185-5e64-b338-6a5e7fb9e27c@gmail.com> Message-ID: Content-Type: text/plain; charset="UTF-8" Message-ID: <20190506214253.NlKTIzOiiP4ajuG8KbJxPrqJSGJ1M8vJ2wHHX8Elhvo@z> > On Sun, May 5, 2019@5:19 PM Frank Rowand wrote: > > You can see the full version 14 document in the submitter's repo: > > > > $ git clone https://github.com/isaacs/testanything.github.io.git > > $ cd testanything.github.io > > $ git checkout tap14 > > $ ls tap-version-14-specification.md > > > > My understanding is the the version 14 specification is not trying to > > add new features, but instead capture what is already implemented in > > the wild. > > Oh! I didn't know about the work on TAP 14. I'll go read through this. > > > > ## Here is what I propose for this patchset: > > > > > > - Print out test number range at the beginning of each test suite. > > > - Print out log lines as soon as they happen as diagnostics. > > > - Print out the lines that state whether a test passes or fails as a > > > ok/not ok line. > > > > > > This would be technically conforming with TAP13 and is consistent with > > > what some kselftests have done. > > This is what I fixed kselftest to actually do (it wasn't doing correct > TAP13), and Shuah is testing the series now: > https://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git/log/?h=ksft-tap-refactor Oh, cool! I guess this is an okay approach then. Thanks!