summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/extensions')
-rw-r--r--chrome/browser/extensions/extensions_service_unittest.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/browser/extensions/extensions_service_unittest.cc b/chrome/browser/extensions/extensions_service_unittest.cc
index 1150dae..9799b7f 100644
--- a/chrome/browser/extensions/extensions_service_unittest.cc
+++ b/chrome/browser/extensions/extensions_service_unittest.cc
@@ -516,6 +516,10 @@ TEST_F(ExtensionsServiceTest, PackExtension) {
ASSERT_TRUE(creator->Run(input_directory, crx_path, FilePath(),
privkey_path));
+ std::string priv_key;
+ file_util::ReadFileToString(crx_path, &priv_key);
+ LOG(INFO) << "Private key:\n" << priv_key;
+
ASSERT_TRUE(file_util::PathExists(privkey_path));
InstallExtension(crx_path, true);