| Index: base/crypto/encryptor_unittest.cc
|
| ===================================================================
|
| --- base/crypto/encryptor_unittest.cc (revision 43354)
|
| +++ base/crypto/encryptor_unittest.cc (working copy)
|
| @@ -11,13 +11,7 @@
|
| #include "base/string_util.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| -#if defined(USE_NSS) || defined(OS_MACOSX)
|
| -#define MAYBE(name) name
|
| -#else
|
| -#define MAYBE(name) DISABLED_ ## name
|
| -#endif
|
| -
|
| -TEST(EncryptorTest, MAYBE(EncryptDecrypt)) {
|
| +TEST(EncryptorTest, EncryptDecrypt) {
|
| scoped_ptr<base::SymmetricKey> key(base::SymmetricKey::DeriveKeyFromPassword(
|
| base::SymmetricKey::AES, "password", "saltiest", 1000, 256));
|
| EXPECT_TRUE(NULL != key.get());
|
|
|