[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <ac2c1eaa-acd7-7ac6-0666-6e6c0cbd546b@linuxfoundation.org>
Date: Wed, 10 Jun 2020 10:19:01 -0600
From: Shuah Khan <skhan@...uxfoundation.org>
To: Paolo Bonzini <pbonzini@...hat.com>, linux-kernel@...r.kernel.org,
kvm@...r.kernel.org
Cc: shuah@...nel.org, linux-kselftest@...r.kernel.org,
Shuah Khan <skhan@...uxfoundation.org>
Subject: Re: [PATCH] kselftest: runner: fix TAP output for skipped tests
On 6/10/20 9:44 AM, Paolo Bonzini wrote:
> According to the TAP specification, a skipped test must be marked as "ok"
> and annotated with the SKIP directive, for example
>
> ok 23 # skip Insufficient flogiston pressure.
> (https://testanything.org/tap-specification.html)
>
> Fix the runner script to match this.
>
> Signed-off-by: Paolo Bonzini <pbonzini@...hat.com>
> ---
> tools/testing/selftests/kselftest/runner.sh | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/testing/selftests/kselftest/runner.sh b/tools/testing/selftests/kselftest/runner.sh
> index 676b3a8b114d..f4815cbcd60f 100644
> --- a/tools/testing/selftests/kselftest/runner.sh
> +++ b/tools/testing/selftests/kselftest/runner.sh
> @@ -77,7 +77,7 @@ run_one()
> echo "ok $test_num $TEST_HDR_MSG") ||
> (rc=$?; \
> if [ $rc -eq $skip_rc ]; then \
> - echo "not ok $test_num $TEST_HDR_MSG # SKIP"
> + echo "ok $test_num $TEST_HDR_MSG # SKIP"
> elif [ $rc -eq $timeout_rc ]; then \
> echo "#"
> echo "not ok $test_num $TEST_HDR_MSG # TIMEOUT"
>
Thanks. I will pull this in for Linux 5.8-rc2
thanks,
-- Shuah
Powered by blists - more mailing lists