OSDN Git Service

Add support for running host java tests to runtest.
authorBrett Chabot <brettchabot@google.com>
Fri, 26 Jun 2009 00:57:31 +0000 (17:57 -0700)
committerBrett Chabot <brettchabot@google.com>
Fri, 26 Jun 2009 21:31:52 +0000 (14:31 -0700)
commit764d3fa70d42a79e2ee999b790e69fc55f12bf61
tree99033717a6c33ed44ea70edf3d04918f91e5550e
parente860ea067609d5cd33bce04a0536600961aceb4a
Add support for running host java tests to runtest.

With this change, also refactored runtest as follows: Modified the
test suite schema and python implementation to have an inheritance
structure.  Each test type has its own python module, which will
also handle the logic of running the test.
15 files changed:
testrunner/__init__.py [new file with mode: 0644]
testrunner/adb_interface.py
testrunner/android_build.py
testrunner/coverage.py
testrunner/errors.py
testrunner/runtest.py
testrunner/test_defs.py [deleted file]
testrunner/test_defs.xml
testrunner/test_defs.xsd
testrunner/test_defs/__init__.py [new file with mode: 0644]
testrunner/test_defs/abstract_test.py [new file with mode: 0644]
testrunner/test_defs/host_test.py [new file with mode: 0644]
testrunner/test_defs/instrumentation_test.py [new file with mode: 0644]
testrunner/test_defs/native_test.py [new file with mode: 0644]
testrunner/test_defs/test_defs.py [new file with mode: 0644]