From 9f6a119c8aa276432ece4fe2118bd8a3c9b1067e Mon Sep 17 00:00:00 2001 From: Mike Lockwood Date: Wed, 28 Aug 2013 09:44:17 -0700 Subject: Move frameworks/base/tools/ to frameworks/tools/ Change-Id: I3ffafdab27cc4aca256c3a5806b630795b75d5c8 --- tools/aidl/options_test.cpp | 291 -------------------------------------------- 1 file changed, 291 deletions(-) delete mode 100644 tools/aidl/options_test.cpp (limited to 'tools/aidl/options_test.cpp') diff --git a/tools/aidl/options_test.cpp b/tools/aidl/options_test.cpp deleted file mode 100644 index bd106ce..0000000 --- a/tools/aidl/options_test.cpp +++ /dev/null @@ -1,291 +0,0 @@ -#include -#include "options.h" - -const bool VERBOSE = false; - -using namespace std; - -struct Answer { - const char* argv[8]; - int result; - const char* systemSearchPath[8]; - const char* localSearchPath[8]; - const char* inputFileName; - language_t nativeLanguage; - const char* outputH; - const char* outputCPP; - const char* outputJava; -}; - -bool -match_arrays(const char* const*expected, const vector &got) -{ - int count = 0; - while (expected[count] != NULL) { - count++; - } - if (got.size() != count) { - return false; - } - for (int i=0; i &got) -{ - size_t count = got.size(); - for (size_t i=0; i