| Index: crypto/rsa_private_key_unittest.cc
|
| diff --git a/crypto/rsa_private_key_unittest.cc b/crypto/rsa_private_key_unittest.cc
|
| index ee5b1217c71349bd3bd48c4dc47a8610d871642a..b231cac6cc3110fa1fd231b65e1851c267193c52 100644
|
| --- a/crypto/rsa_private_key_unittest.cc
|
| +++ b/crypto/rsa_private_key_unittest.cc
|
| @@ -445,9 +445,6 @@ TEST(RSAPrivateKeyUnitTest, ShortIntegers) {
|
| input2.size()));
|
| }
|
|
|
| -// The following test can run if either USE_NSS_CERTS or USE_OPENSSL is defined,
|
| -// but not otherwise (since it uses crypto::RSAPrivateKey::CreateFromKey).
|
| -#if defined(USE_NSS_CERTS) || defined(USE_OPENSSL)
|
| TEST(RSAPrivateKeyUnitTest, CreateFromKeyTest) {
|
| scoped_ptr<crypto::RSAPrivateKey> key_pair(
|
| crypto::RSAPrivateKey::Create(256));
|
| @@ -469,5 +466,4 @@ TEST(RSAPrivateKeyUnitTest, CreateFromKeyTest) {
|
| ASSERT_EQ(privkey, privkey_copy);
|
| ASSERT_EQ(pubkey, pubkey_copy);
|
| }
|
| -#endif
|
|
|
|
|