diff --git a/tools/aidl/options_test.cpp b/tools/aidl/options_test.cpp deleted file mode 100644 index 7ac527dc9e4f4..0000000000000 --- a/tools/aidl/options_test.cpp +++ /dev/null @@ -1,292 +0,0 @@ -#include -#include "options.h" - -const bool VERBOSE = false; - -using std::string; -using std::vector; - -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