]> git.ipfire.org Git - thirdparty/git.git/commit
t0051: use "skip_all" under !MINGW in single-test file
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Fri, 4 Feb 2022 13:42:14 +0000 (14:42 +0100)
committerJunio C Hamano <gitster@pobox.com>
Fri, 4 Feb 2022 20:34:41 +0000 (12:34 -0800)
commit0a2bfccb9c85458f329fdbf714af699edd86fe32
treebed7f8a10b174e96d4fb8e50dba4a4dfd5e6e8b1
parent5d01301f2b865aa8dba1654d3f447ce9d21db0b5
t0051: use "skip_all" under !MINGW in single-test file

Have this file added in 06ba9d03e34 (t0051: test GIT_TRACE to a
windows named pipe, 2018-09-11) use the same "skip_all" pattern as an
existing Windows-only test added in 0e218f91c29 (mingw: unset PERL5LIB
by default, 2018-10-30) uses.

This way TAP consumers like "prove" will show a nice summary when the
test is skipped. Instead of:

    $ prove t0051-windows-named-pipe.sh
    [...]
    t0051-windows-named-pipe.sh .. ok
    [...]

We will prominently show a "skipped" notice:

    $ prove t0051-windows-named-pipe.sh
    [...]
    t0051-windows-named-pipe.sh ... skipped: skipping Windows-specific tests
    [...]

This is because we are now making use of the right TAP-y way to
communicate this to the consumer. I.e. skipping the whole test file,
v.s. skipping individual tests (in this case there's only one test).

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t0051-windows-named-pipe.sh