]> git.itanic.dy.fi Git - linux-stable/commit
selftests/tpm2: Split async tests call to separate shell script runner
authorNícolas F. R. A. Prado <nfraprado@collabora.com>
Mon, 28 Nov 2022 22:03:40 +0000 (17:03 -0500)
committerShuah Khan <skhan@linuxfoundation.org>
Wed, 30 Nov 2022 00:28:31 +0000 (17:28 -0700)
commit8008d88e6d160c4e73de5be7c3dcc54e3ccccf49
tree755ad6c749af5738bed452b3c9d741a5bc7267c9
parent177f504cb70cc034774bf708a6ec3f568e0d02a1
selftests/tpm2: Split async tests call to separate shell script runner

When the async test case was introduced, despite being a completely
independent test case, the command to run it was added to the same shell
script as the smoke test case. Since a shell script implicitly returns
the error code from the last run command, this effectively caused the
script to only return as error code the result from the async test case,
hiding the smoke test result (which could then only be seen from the
python unittest logs).

Move the async test case call to its own shell script runner to avoid
the aforementioned issue. This also makes the output clearer to read,
since each kselftest KTAP result now matches with one python unittest
report.

While at it, also make it so the async test case is skipped if
/dev/tpmrm0 doesn't exist, since commit 8335adb8f9d3 ("selftests: tpm:
add async space test with noneexisting handle") added a test that relies
on it.

Signed-off-by: Nícolas F. R. A. Prado <nfraprado@collabora.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/testing/selftests/tpm2/Makefile
tools/testing/selftests/tpm2/test_async.sh [new file with mode: 0755]
tools/testing/selftests/tpm2/test_smoke.sh