| Index: mojo/edk/test/run_all_perftests.cc
|
| diff --git a/mojo/edk/test/run_all_perftests.cc b/mojo/edk/test/run_all_perftests.cc
|
| index 8f2511f1c4af42b932ebdc879b2ca6a4a2b7f02a..3ce3b470995984f606e693a280bd623be68251cf 100644
|
| --- a/mojo/edk/test/run_all_perftests.cc
|
| +++ b/mojo/edk/test/run_all_perftests.cc
|
| @@ -7,8 +7,8 @@
|
| #include "base/test/perf_test_suite.h"
|
| #include "base/test/test_io_thread.h"
|
| #include "mojo/edk/embedder/embedder.h"
|
| +#include "mojo/edk/embedder/scoped_ipc_support.h"
|
| #include "mojo/edk/test/multiprocess_test_helper.h"
|
| -#include "mojo/edk/test/scoped_ipc_support.h"
|
| #include "mojo/edk/test/test_support_impl.h"
|
| #include "mojo/public/tests/test_support_private.h"
|
|
|
| @@ -17,7 +17,9 @@ int main(int argc, char** argv) {
|
|
|
| mojo::edk::Init();
|
| base::TestIOThread test_io_thread(base::TestIOThread::kAutoStart);
|
| - mojo::edk::test::ScopedIPCSupport ipc_support(test_io_thread.task_runner());
|
| + mojo::edk::ScopedIPCSupport ipc_support(
|
| + test_io_thread.task_runner(),
|
| + mojo::edk::ScopedIPCSupport::ShutdownPolicy::CLEAN);
|
| mojo::test::TestSupport::Init(new mojo::edk::test::TestSupportImpl());
|
|
|
| return test.Run();
|
|
|