diff options
author | Jack Lloyd <[email protected]> | 2016-11-21 20:10:51 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-11-23 08:31:07 -0500 |
commit | 987fcef3f93fe06500b81da2706b358cff85d53a (patch) | |
tree | 2010a47d701f1fc7f10db2ff41b30d0077cb4eb5 /src/tests/test_x509_path.cpp | |
parent | cdd2e2babc0506d0c727aff06d1fc430cedbf695 (diff) |
Add useful debugging output to path validation test
Diffstat (limited to 'src/tests/test_x509_path.cpp')
-rw-r--r-- | src/tests/test_x509_path.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_x509_path.cpp b/src/tests/test_x509_path.cpp index ae52de541..facebf139 100644 --- a/src/tests/test_x509_path.cpp +++ b/src/tests/test_x509_path.cpp @@ -93,7 +93,7 @@ class X509test_Path_Validation_Tests : public Test if(path_result.successful_validation() && path_result.trust_root() != root) path_result = Botan::Path_Validation_Result(Botan::Certificate_Status_Code::CANNOT_ESTABLISH_TRUST); - result.test_eq("validation result", path_result.result_string(), expected_result); + result.test_eq("test " + filename, path_result.result_string(), expected_result); results.push_back(result); } |