Fix load_kasvs_ecdh_vectors() COUNT sourcing
COUNT is a decimal number in test files, but was erroneously read
and converted as if the source was a hexadecimal number.
Fix the loader and test the fix.
Signed-off-by: Simo Sorce <simo@redhat.com>
diff --git a/tests/utils.py b/tests/utils.py
index cc3f9fc..3970109 100644
--- a/tests/utils.py
+++ b/tests/utils.py
@@ -722,7 +722,7 @@
if line.startswith("["):
tag = line.split()[0][1:]
elif line.startswith("COUNT = "):
- data["COUNT"] = int(line.split("=")[1], 16)
+ data["COUNT"] = int(line.split("=")[1])
elif line.startswith("dsCAVS = "):
data["CAVS"]["d"] = int(line.split("=")[1], 16)
elif line.startswith("QsCAVSx = "):