aboutsummaryrefslogtreecommitdiffstats
path: root/tests/utils.py
diff options
context:
space:
mode:
authorDavid Reid <dreid@dreid.org>2013-11-12 15:50:43 -0800
committerDavid Reid <dreid@dreid.org>2013-11-12 15:50:43 -0800
commitfcd36a9bb98fe6e13bc37cc833f317a3ee656eef (patch)
treeadc44cfbca50c99f261c45d893d9378ea57e673b /tests/utils.py
parent9d0d94d97cb8ed8d15b24018e20c08cf1f7b78b4 (diff)
parent4faa094526f49c83a75d21a6e796546d4d539c6c (diff)
downloadcryptography-fcd36a9bb98fe6e13bc37cc833f317a3ee656eef.tar.gz
cryptography-fcd36a9bb98fe6e13bc37cc833f317a3ee656eef.tar.bz2
cryptography-fcd36a9bb98fe6e13bc37cc833f317a3ee656eef.zip
Merge branch 'master' into hmac-context-from-backend
Conflicts: cryptography/hazmat/bindings/openssl/backend.py cryptography/hazmat/primitives/hmac.py
Diffstat (limited to 'tests/utils.py')
-rw-r--r--tests/utils.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/utils.py b/tests/utils.py
index df9232d8..8fa9af92 100644
--- a/tests/utils.py
+++ b/tests/utils.py
@@ -43,8 +43,12 @@ def load_nist_vectors(vector_data):
section = line[1:-1]
continue
+ if line.strip() == "FAIL":
+ data[section, count]["fail"] = True
+ continue
+
# Build our data using a simple Key = Value format
- name, value = line.split(" = ")
+ name, value = [c.strip() for c in line.split("=")]
# COUNT is a special token that indicates a new block of data
if name.upper() == "COUNT":