Remove duplicate test run

The test vector collection is run earlier in the process.
pull/765/head
Jeffrey Walton 2018-12-12 05:59:20 -05:00
parent e97d6d0ff5
commit 80c551121f
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 0 additions and 1 deletions

View File

@ -168,7 +168,6 @@ bool ValidateDSA(bool thorough)
DSA::Verifier pub1(fs2); DSA::Verifier pub1(fs2);
CRYPTOPP_ASSERT(pub.GetKey() == pub1.GetKey()); CRYPTOPP_ASSERT(pub.GetKey() == pub1.GetKey());
pass = SignatureValidate(priv, pub, thorough) && pass; pass = SignatureValidate(priv, pub, thorough) && pass;
pass = RunTestDataFile("TestVectors/dsa.txt", g_nullNameValuePairs, thorough) && pass;
return pass; return pass;
} }