From 80c551121fe404347a8dcf27d315d0d1702e7717 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 12 Dec 2018 05:59:20 -0500 Subject: [PATCH] Remove duplicate test run The test vector collection is run earlier in the process. --- validat9.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/validat9.cpp b/validat9.cpp index 89c42a03..854aa82f 100644 --- a/validat9.cpp +++ b/validat9.cpp @@ -168,7 +168,6 @@ bool ValidateDSA(bool thorough) DSA::Verifier pub1(fs2); CRYPTOPP_ASSERT(pub.GetKey() == pub1.GetKey()); pass = SignatureValidate(priv, pub, thorough) && pass; - pass = RunTestDataFile("TestVectors/dsa.txt", g_nullNameValuePairs, thorough) && pass; return pass; }