Home
last modified time | relevance | path

Searched refs:runtimeException (Results 1 – 3 of 3) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/invoker/
DDelegatedInvocationExecution.java133 RuntimeException runtimeException = null; in runTests() local
142 runtimeException = e; in runTests()
151 if (runtimeException != null) { in runTests()
152 if (runtimeException instanceof RunInterruptedException) { in runTests()
153 throw runtimeException; in runTests()
156 runtimeException.getMessage(), in runTests()
157 runtimeException, in runTests() local
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/
DTfSuiteRunner.java111 RuntimeException runtimeException = in loadTests()
117 throw runtimeException; in loadTests()
/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/
DTestInvocationTest.java445 RuntimeException runtimeException = new RuntimeException("failed to get build."); in testInvoke_buildFailed_runtimeException() local
446 EasyMock.expect(mMockBuildProvider.getBuild()).andThrow(runtimeException); in testInvoke_buildFailed_runtimeException()