testutil: Fix non-standard subtest output
authorRichard Levitte <levitte@openssl.org>
Thu, 11 May 2017 17:32:43 +0000 (19:32 +0200)
committerRichard Levitte <levitte@openssl.org>
Thu, 11 May 2017 18:42:01 +0000 (20:42 +0200)
commit0b10da806a3a15b9bfe24ce8d67d3ebac7b7ab06
treead7cb9ceacd2988cd5a962c64d7e50cbd2eef5c3
parent46fcbf77bc6f2a287cb7266c58c204aa3960e456
testutil: Fix non-standard subtest output

In some cases, testutil outputs subtests like this:

    1..6 # Subtest: progname

The standard set by Test::More (because there really is no actual
standard yet) gives this display:

    # Subtest: progname
    1..6

Until the standard is actually agreed upon, let's do it like
Test::More.

Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3446)
test/testutil/driver.c