summaryrefslogtreecommitdiff
path: root/init/init_parser_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'init/init_parser_test.cpp')
-rw-r--r--init/init_parser_test.cpp6
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