| Index: shell/child_process_host_unittest.cc
|
| diff --git a/shell/child_process_host_unittest.cc b/shell/child_process_host_unittest.cc
|
| index 88aaba78a5537c0aac1e2b519e53e122f5993ac6..6aa77b436354568fc70adf371d33cd898a430630 100644
|
| --- a/shell/child_process_host_unittest.cc
|
| +++ b/shell/child_process_host_unittest.cc
|
| @@ -33,7 +33,13 @@ class TestChildProcessHostDelegate : public ChildProcessHost::Delegate {
|
|
|
| typedef testing::Test ChildProcessHostTest;
|
|
|
| -TEST_F(ChildProcessHostTest, Basic) {
|
| +#if defined(OS_ANDROID)
|
| +// TODO(qsr): Multiprocess shell tests are not supported on android.
|
| +#define MAYBE_Basic DISABLED_Basic
|
| +#else
|
| +#define MAYBE_Basic Basic
|
| +#endif // defined(OS_ANDROID)
|
| +TEST_F(ChildProcessHostTest, MAYBE_Basic) {
|
| Context context;
|
| base::MessageLoop message_loop(
|
| scoped_ptr<base::MessagePump>(new common::MessagePumpMojo()));
|
|
|