| Index: chrome/browser/extensions/sandboxed_unpacker_unittest.cc
|
| diff --git a/chrome/browser/extensions/sandboxed_unpacker_unittest.cc b/chrome/browser/extensions/sandboxed_unpacker_unittest.cc
|
| index 39f634e366b401cae4744871555ce8c9e333cba4..7428cba7a68bdd57b06f23fe888162a07d9456c2 100644
|
| --- a/chrome/browser/extensions/sandboxed_unpacker_unittest.cc
|
| +++ b/chrome/browser/extensions/sandboxed_unpacker_unittest.cc
|
| @@ -115,7 +115,15 @@ TEST_F(SandboxedUnpackerTest, NoCatalogsSuccess) {
|
| EXPECT_FALSE(base::PathExists(install_path));
|
| }
|
|
|
| -TEST_F(SandboxedUnpackerTest, WithCatalogsSuccess) {
|
| +#if defined(OS_LINUX) && !defined(OS_CHROMEOS) && defined(USE_AURA)
|
| +// Consistently times out.
|
| +// TODO(erg): linux_aura bringup: http://crbug.com/163931
|
| +#define MAYBE_WithCatalogsSuccess DISABLED_WithCatalogsSuccess
|
| +#else
|
| +#define MAYBE_WithCatalogsSuccess WithCatalogsSuccess
|
| +#endif
|
| +
|
| +TEST_F(SandboxedUnpackerTest, MAYBE_WithCatalogsSuccess) {
|
| SetupUnpacker("good_l10n.crx");
|
| // Check that there is _locales folder.
|
| base::FilePath install_path =
|
|
|