selftests: tpm2: remove redundant ord()
authorTzung-Bi Shih <tzungbi@kernel.org>
Fri, 3 Feb 2023 10:14:30 +0000 (18:14 +0800)
committerShuah Khan <skhan@linuxfoundation.org>
Mon, 13 Feb 2023 16:09:46 +0000 (09:09 -0700)
When testing with FLAG_DEBUG enabled client, it emits the following
error messages:

File "/root/tpm2/tpm2.py", line 347, in hex_dump
    d = [format(ord(x), '02x') for x in d]
File "/root/tpm2/tpm2.py", line 347, in <listcomp>
    d = [format(ord(x), '02x') for x in d]
TypeError: ord() expected string of length 1, but int found

The input of hex_dump() should be packed binary data.  Remove the
ord().

Signed-off-by: Tzung-Bi Shih <tzungbi@kernel.org>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/testing/selftests/tpm2/tpm2.py

index c7363c6764fc63fbcf8284cda88591b25f0010d1..bba8cb54548ec9022af79d9eb6286a5ef0704fe4 100644 (file)
@@ -344,7 +344,7 @@ def get_algorithm(name):
 
 
 def hex_dump(d):
-    d = [format(ord(x), '02x') for x in d]
+    d = [format(x, '02x') for x in d]
     d = [d[i: i + 16] for i in range(0, len(d), 16)]
     d = [' '.join(x) for x in d]
     d = os.linesep.join(d)