| Index: mojo/edk/test/run_all_unittests.cc
|
| diff --git a/mojo/edk/test/run_all_unittests.cc b/mojo/edk/test/run_all_unittests.cc
|
| index 0b0663b26f5f8825da5dc5959a79b55a31058e4f..a057825d8f09076a1c07aee82244d3f583a999d0 100644
|
| --- a/mojo/edk/test/run_all_unittests.cc
|
| +++ b/mojo/edk/test/run_all_unittests.cc
|
| @@ -11,8 +11,8 @@
|
| #include "base/test/test_io_thread.h"
|
| #include "base/test/test_suite.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"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| @@ -40,7 +40,9 @@ int main(int argc, char** argv) {
|
| mojo::test::TestSupport::Init(new mojo::edk::test::TestSupportImpl());
|
| 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);
|
| return base::LaunchUnitTests(
|
| argc, argv,
|
| base::Bind(&base::TestSuite::Run, base::Unretained(&test_suite)));
|
|
|