]> git.ipfire.org Git - thirdparty/nftables.git/commit
tests/shell: print "kernel is tainted" separate from test result
authorThomas Haller <thaller@redhat.com>
Thu, 7 Sep 2023 22:07:20 +0000 (00:07 +0200)
committerFlorian Westphal <fw@strlen.de>
Fri, 8 Sep 2023 09:50:41 +0000 (11:50 +0200)
commita529b3dcda72a8b60eb2ccc9143faf284b01e49c
treedc9d3d7c3323bc1b822638d5437938b3e41327dd
parentc9393e2468ee6cc27bbd9311839699deca6e17cc
tests/shell: print "kernel is tainted" separate from test result

Once the kernel is tainted, it stays until reboot. It would not be
useful to fail the entire test run based on that (and we don't do that).

But then, it seems odd to print this in the same style as the test
results, because a [FAILED] of a test counts as an overall failure.
Instead, print this warning in a different style.

Previously:

    $ ./tests/shell/run-tests.sh -- /usr/bin/true
    ...

    W: [FAILED]     kernel is tainted
    I: [OK]         /usr/bin/true

    I: results: [OK] 1 [SKIPPED] 0 [FAILED] 0 [TOTAL] 1

Now:

    $ ./tests/shell/run-tests.sh -- /usr/bin/true
    ...

    W: kernel is tainted

    I: [OK]         /usr/bin/true

    I: results: [OK] 1 [SKIPPED] 0 [FAILED] 0 [TOTAL] 1

Signed-off-by: Thomas Haller <thaller@redhat.com>
Signed-off-by: Florian Westphal <fw@strlen.de>
tests/shell/run-tests.sh