Home
last modified time | relevance | path

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

/external/deqp/android/cts/runner/src/com/drawelements/deqp/runner/
DDeqpTestRunner.java1444 Throwable interruptingError = null; in executeTestRunBatchRun() local
1449 interruptingError = ex; in executeTestRunBatchRun()
1462 if (interruptingError != null) { in executeTestRunBatchRun()
1463 if (interruptingError instanceof AdbComLinkOpenError) { in executeTestRunBatchRun()
1465 } else if (interruptingError instanceof AdbComLinkKilledError) { in executeTestRunBatchRun()
1467 } else if (interruptingError instanceof RunInterruptedException) { in executeTestRunBatchRun()
1469 throw (RunInterruptedException)interruptingError; in executeTestRunBatchRun()
1471 CLog.e(interruptingError); in executeTestRunBatchRun()
1472 throw new RuntimeException(interruptingError); in executeTestRunBatchRun()
1487 final boolean wasLinkFailure = !parser.wasSuccessful() || interruptingError != null; in executeTestRunBatchRun()