Remove ECDSA error code hack in evp_test.

This is no longer necessary as of
7ed2e82e5a.

Change-Id: I02d4df0bc92bf3c5826e9e4f27ce153ae419c258
Reviewed-on: https://boringssl-review.googlesource.com/16505
Reviewed-by: Adam Langley <agl@google.com>
This commit is contained in:
David Benjamin 2017-05-18 19:08:12 -04:00 committed by Adam Langley
parent dfef2081f3
commit ef374b8692

View File

@ -277,9 +277,6 @@ static bool TestEVP(FileTest *t, void *arg) {
if (!t->GetBytes(&output, "Output") ||
!verify_op(ctx.get(), output.data(), output.size(), input.data(),
input.size())) {
// ECDSA sometimes doesn't push an error code. Push one on the error queue
// so it's distinguishable from other errors.
OPENSSL_PUT_ERROR(USER, ERR_R_EVP_LIB);
return false;
}
return true;