aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-12-14 12:01:51 +0000
committerlloyd <[email protected]>2006-12-14 12:01:51 +0000
commit7edb1d252e451aa19bb07dc42fd1302e4270a8ad (patch)
tree2b6fd4da51e687af56cbe40734f646a596d48b29
parent05b4521605422f7d31e558a8da6b2d63937ede30 (diff)
Update the Python version of the testsuite to use the new filename scheme
-rwxr-xr-xmisc/python/nisttest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/python/nisttest.py b/misc/python/nisttest.py
index 446c42625..a16ebf791 100755
--- a/misc/python/nisttest.py
+++ b/misc/python/nisttest.py
@@ -24,8 +24,8 @@ def validate(ca_certs, certs, crls, ee_certs):
def run_test(files, rootdir, testname, expected):
crls = [join(rootdir,x) for x in files if x.endswith(".crl")]
certs = [join(rootdir,x) for x in files if x.endswith(".crt")]
- end_entity = [x for x in certs if x.find("End Cert") != -1]
- ca_certs = [x for x in certs if x.find("Trust Anchor") != -1]
+ end_entity = [x for x in certs if x.find("end.crt") != -1]
+ ca_certs = [x for x in certs if x.find("root.crt") != -1]
print "%s..." % testname,