diff options
author | Tom Cherry <tomcherry@google.com> | 2017-06-23 23:15:21 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-06-23 23:15:21 +0000 |
commit | d3d79b21968139b135ca24b13dd400494fe73965 (patch) | |
tree | 7992591f17a63a176a8323a2ac398c89bc72c0e7 /init/init_parser_test.cpp | |
parent | bac524b0cd742c7a79ae9bf64152fae62ce7787b (diff) | |
parent | 040212706bdff2efece95f4fc4fd8bee136657d6 (diff) |
Merge "init: create android::init:: namespace"
am: 040212706b
Change-Id: Iff22100c7357ccc4a2a48c50b093375b5dd8a4b9
Diffstat (limited to 'init/init_parser_test.cpp')
-rw-r--r-- | init/init_parser_test.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/init/init_parser_test.cpp b/init/init_parser_test.cpp index 86d60d024..38b8275e5 100644 --- a/init/init_parser_test.cpp +++ b/init/init_parser_test.cpp @@ -24,6 +24,9 @@ #include <string> #include <vector> +namespace android { +namespace init { + TEST(init_parser, make_exec_oneshot_service_invalid_syntax) { ServiceManager& sm = ServiceManager::GetInstance(); std::vector<std::string> args; @@ -141,3 +144,6 @@ TEST(init_parser, make_exec_oneshot_service_with_just_command) { TEST(init_parser, make_exec_oneshot_service_with_just_command_no_dash) { Test_make_exec_oneshot_service(false, false, false, false, false); } + +} // namespace init +} // namespace android |