From f8a6a9c9e0e3c7624f8a41a7bdc9e29f97476acb Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Mon, 19 Feb 2018 16:17:03 -0500 Subject: [PATCH] Change case of FAILED message in datatest.cpp Throughout the library the message "FAILED" (not "failed") is used to signal failures. It makes it easy to grep for them. This change makes the message consistent. --- datatest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datatest.cpp b/datatest.cpp index cfabad40..a7dbd7db 100644 --- a/datatest.cpp +++ b/datatest.cpp @@ -860,7 +860,7 @@ void TestDataFile(std::string filename, const NameValuePairs &overrideParameters } catch (const TestFailure &) { - std::cout << "\nTest failed.\n"; + std::cout << "\nTest FAILED.\n"; } catch (const CryptoPP::Exception &e) {