diff options
author | Tom Cherry <tomcherry@google.com> | 2017-07-27 12:54:48 -0700 |
---|---|---|
committer | Tom Cherry <tomcherry@google.com> | 2017-07-27 13:23:32 -0700 |
commit | 67dee626e0185096bbaf73042f1a891ce436f714 (patch) | |
tree | 7d8dac0fe94f641494ea33e97ca00e0fb444795b /init/init_test.cpp | |
parent | 29b94116855b96e24beeb993396b251a1f85127a (diff) |
init: remove Parser singleton and related cleanup
* Remove the Parser singleton (Hooray!)
* Rename parser.* to tokenizer.* as this is actually a tokenizer
* Rename init_parser.* to parser.* as this is a generic parser
* Move contents of init_parser_test.cpp to service_test.cpp as this
actually is a test of the parsing in MakeExecOneshotService() and
nothing related to (init_)parser.cpp
Test: boot bullhead
Test: bool sailfish
Test: init unit tests
Change-Id: I4fe39e6483f58ebd3ce5ee715a45dbba0acf5d91
Diffstat (limited to 'init/init_test.cpp')
-rw-r--r-- | init/init_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/init_test.cpp b/init/init_test.cpp index 0a4071b98..20622901c 100644 --- a/init/init_test.cpp +++ b/init/init_test.cpp @@ -23,8 +23,8 @@ #include "action.h" #include "builtins.h" #include "import_parser.h" -#include "init_parser.h" #include "keyword_map.h" +#include "parser.h" #include "util.h" namespace android { |