| Index: crypto/ec_signature_creator_unittest.cc
|
| diff --git a/crypto/ec_signature_creator_unittest.cc b/crypto/ec_signature_creator_unittest.cc
|
| index bc0cb4a6b60d4a79872cd20a154b98f3686923fb..b2c74e2b032860da2428cd09944c618934fe69ee 100644
|
| --- a/crypto/ec_signature_creator_unittest.cc
|
| +++ b/crypto/ec_signature_creator_unittest.cc
|
| @@ -12,17 +12,9 @@
|
| #include "crypto/signature_verifier.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| -#if defined(USE_OPENSSL)
|
| -// Once ECSignatureCreator is implemented for OpenSSL, remove this #if block.
|
| -// TODO(rch): When that happens, also add some exported keys from each to
|
| +// TODO(rch): Add some exported keys from each to
|
| // test interop between NSS and OpenSSL.
|
| -TEST(ECSignatureCreatorTest, OpenSSLStub) {
|
| - scoped_ptr<crypto::ECSignatureCreator> signer(
|
| - crypto::ECSignatureCreator::Create(NULL));
|
| - ASSERT_TRUE(signer.get());
|
| - EXPECT_FALSE(signer->Sign(NULL, 0, NULL));
|
| -}
|
| -#else
|
| +
|
| TEST(ECSignatureCreatorTest, BasicTest) {
|
| // Do a verify round trip.
|
| scoped_ptr<crypto::ECPrivateKey> key_original(
|
| @@ -80,5 +72,4 @@ TEST(ECSignatureCreatorTest, BasicTest) {
|
| verifier.VerifyUpdate(reinterpret_cast<const uint8*>(data.c_str()),
|
| data.size());
|
| ASSERT_TRUE(verifier.VerifyFinal());
|
| -}
|
| -#endif // !defined(USE_OPENSSL)
|
| +}
|
|
|