| Index: mojo/application/application_test_main_chromium.cc
|
| diff --git a/mojo/public/cpp/application/lib/application_test_main.cc b/mojo/application/application_test_main_chromium.cc
|
| similarity index 81%
|
| copy from mojo/public/cpp/application/lib/application_test_main.cc
|
| copy to mojo/application/application_test_main_chromium.cc
|
| index 9b76dad1cf842f4db27d85e0440a4821bab3badc..a81ff11d9674c6542de1f496e7dd70103677e5bf 100644
|
| --- a/mojo/public/cpp/application/lib/application_test_main.cc
|
| +++ b/mojo/application/application_test_main_chromium.cc
|
| @@ -2,16 +2,19 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include "base/at_exit.h"
|
| +#include "base/logging.h"
|
| +#include "base/message_loop/message_loop.h"
|
| #include "mojo/public/c/system/main.h"
|
| #include "mojo/public/cpp/application/application_delegate.h"
|
| #include "mojo/public/cpp/application/application_impl.h"
|
| #include "mojo/public/cpp/application/application_test_base.h"
|
| -#include "mojo/public/cpp/environment/logging.h"
|
| +#include "mojo/public/cpp/environment/environment.h"
|
| #include "mojo/public/cpp/system/message_pipe.h"
|
|
|
| MojoResult MojoMain(MojoHandle shell_handle) {
|
| - // An Environment instance is needed to construct run loops.
|
| - mojo::Environment environment;
|
| + // An AtExitManager instance is needed to construct message loops.
|
| + base::AtExitManager at_exit;
|
|
|
| {
|
| // This RunLoop is used for init, and then destroyed before running tests.
|
| @@ -22,14 +25,13 @@ MojoResult MojoMain(MojoHandle shell_handle) {
|
| // $ mojo_shell 'mojo:example_apptests arg1 --gtest_filter=foo arg2'
|
| mojo::ApplicationDelegate dummy_application_delegate;
|
| mojo::ApplicationImpl app(&dummy_application_delegate, shell_handle);
|
| - MOJO_CHECK(app.WaitForInitialize());
|
| + CHECK(app.WaitForInitialize());
|
|
|
| // InitGoogleTest expects (argc + 1) elements, including a terminating NULL.
|
| // It also removes GTEST arguments from |argv| and updates the |argc| count.
|
| // TODO(msw): Provide tests access to these actual command line arguments.
|
| const std::vector<std::string>& args = app.args();
|
| - MOJO_CHECK(args.size() <
|
| - static_cast<size_t>(std::numeric_limits<int>::max()));
|
| + CHECK_LT(args.size(), static_cast<size_t>(std::numeric_limits<int>::max()));
|
| int argc = static_cast<int>(args.size());
|
| std::vector<const char*> argv(argc + 1);
|
| for (int i = 0; i < argc; ++i)
|
| @@ -45,7 +47,7 @@ MojoResult MojoMain(MojoHandle shell_handle) {
|
|
|
| shell_handle = mojo::test::PassShellHandle().release().value();
|
| MojoResult close_result = MojoClose(shell_handle);
|
| - MOJO_CHECK(close_result == MOJO_RESULT_OK);
|
| + CHECK_EQ(close_result, MOJO_RESULT_OK);
|
|
|
| return (result == 0) ? MOJO_RESULT_OK : MOJO_RESULT_UNKNOWN;
|
| }
|
|
|